使用VC6打开考生文件夹下的源程序文件modil.cpp,该程序运行时有错,请改正其中的错误,使程序正确运行,并且使程序输出的结果为: CMyObject,in the construtor ~CMyObject,in the destru

admin2020-05-14  38

问题 使用VC6打开考生文件夹下的源程序文件modil.cpp,该程序运行时有错,请改正其中的错误,使程序正确运行,并且使程序输出的结果为:
    CMyObject,in the construtor
    ~CMyObject,in the destrutor
    注意:错误的语句在//********error********的下面,修改该语句即可。
    1    #include(iostream.h>
    2   class CMyObj ect
    3  {
    4    //********error********
    5
    6    //********error********
    7    CMyObject(cout<<"CMyObject,in the construtor"<    8    -CMyObject(){cout<<"-CMyObj ect,in the destrutor"<    9    };
    10  void main()
    11    {
    12    CMyObj ect obj 1;
    13  }

选项

答案(1)添加语句:public: (2)CMyobj ect(){cout<<"CMyObj ect,in the construtor"<
解析 程序中定义了类CMyObject,含有一个构造函数和一个析构函数,在构造函数和析构函数中分别输出一段字符。
    [解题思路]
    (1)构造函数和析构函数均为公有函数,而在C++中默认的访问属性为私有(private),因此构造函数和析构函数必须说明为public,即第1个标识下应添加“public:”。
    (2)函数定义中在函数名后均有一对括号表示函数声明,因此第2个标识下应改为“CMyObject(){cout<<"CMyObject,in the constmtor"<
转载请注明原文地址:https://kaotiyun.com/show/3q8p777K
0

最新回复(0)