请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2,该工程中包含一个程序文件main.epp,其中有类CPolygon(“多边形”)、CRectangle(“矩形”)、CTriangle(“三角形”)的定义。请在横线处填写适当的代码并

admin2016-08-19  30

问题 请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2,该工程中包含一个程序文件main.epp,其中有类CPolygon(“多边形”)、CRectangle(“矩形”)、CTriangle(“三角形”)的定义。请在横线处填写适当的代码并删除横线,以实现上述类定义。该程序的正确输出结果应为:
    20
    10
    注意:只能在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“//****found****”。
1    #include
2  using namespace std;
3  class CPolygon{
4   public:
5    //*********found*********
6   _______//纯虚函数area声明
7    void printarea(void)
8    //**********found**********
9    {cout<<_______<10    };
11  class CRectangle:public CPolygon{
12    int width;  //长方形宽
13    int height;  //长方形高
14  public:
15    CRectangle(int w,int h):width(w),height(h){)
16    int area(void){return(width*height);}
17   };
18  class CTriangle:public CPolygon {
19    int length;  //三角形一边长
20    int height;  //该边上的高
21   public:
22    CTriangle(int 1,int h):length(1),height(h){}
23    //**********found**********
24    int area(void){return()/2;}
25    };
26
27  int main(){
28    CRectangle rect(4,5);
29  CTriangle trg1(4,5);
30    //**********found**********
31   ______*ppoly1,*ppoly2;
32  ppoly1=▭
33  ppoly2=&trg1;
34  ppoly1->printarea();
35  ppoly2->printarea();
36    return 0;
37    }

选项

答案(1)virtualint area(void)=0; (2)area() (3)length*height (4)Cpolygon

解析 (1)主要考查考生对纯虚函数的掌握,在定义纯虚函数时要看在派生类中函数的定义:int area(void)。由此可知纯虚函数应该为:virtual int area(void)=0;。
    (2)主要考查考生对纯虚函数的掌握情况,由void print-area(void)可知,该函数要打印面积,因此在此要调用纯虚函数area,即cont<    (3)主要考查考生对数学公式的掌握,该函数要返回三角形面积,三角形的面积公式为长乘以该边上的高除以2,即return(length*height)/2;。
    (4)主要考查考生对抽象类的掌握情况,根据程序段:
    ppoly1=&rect:
    ppoly2=&trgl;
    可知指针ppoly1指向CRectangle类,而指针ppoly2指向CTriangle类,因此在这里只能填这两种类的基类CPolygon类。
转载请注明原文地址:https://kaotiyun.com/show/e4Np777K
0

随机试题
最新回复(0)