请使用VC6或使用【答题】菜单打开考生文件夹pmjl下的工程projl,此工程中含有一个源程序文件pmjl.cpp。其中位于每个注释“//ERROR ****found****”之后的一行语句存在错误。请改正这些错误,使程序的输出结果为: Con

admin2021-06-10  21

问题 请使用VC6或使用【答题】菜单打开考生文件夹pmjl下的工程projl,此工程中含有一个源程序文件pmjl.cpp。其中位于每个注释“//ERROR  ****found****”之后的一行语句存在错误。请改正这些错误,使程序的输出结果为:
    Constructor called.
    The vahe is 10
    Copy constructor called.
    The value is 10
    Destructor called.
    Destructor called.
    注意:只修改注释“//ERROR  ****found****”的下一行语句,不要改动程序中的其他内容。
//projl.cpp
#include
using namespace std;
class MyClass{
public:
//ERROR**********found**********
  MyClass(int i)
    {value=i;cout<<”Construc
tor called.”<//EFROR**********found**********
  MyClass(const MyClass P)
  {
    value=P.value;
    cout  <<”Copy constructor
called.”<  }
  void Print()
    {cout<<”The value is”  <<
value<//ERROR**********found**********
  void—MyClass《)
    {cout<<”Destructor called.”
    <private:
  int value;
};
int main()
{
  MyClass objl;
  objl.Print();
  MyClass obj2(objl);
  obj2.Print();
  return 0;
}

选项

答案(1)MyClass(int i=10) (2)MyClass(eonst MyClass&p) (3)一MyClass()

解析 (1)考查构造函数参数默认值,题目要求输出语句:The value is 10,从主函数中可以看出,obj1并没有初始化,但是obj1调用Print()函数时它的值为10,由此可知构造函数的形参有默认值,且值为10,因此得出语句MyClass(int i=10)。
    (2)主要考查考生对复制构造函数的掌握,复制构造函数的形参都为引用,同时为了不改变形参的值要加上const。因此得出语句MyClass(const MyClass&p)。
    (3)主要考查考生对析构函数的掌握,析构函数和构造函数一样,前面不能添加任何类型,要把void去掉。
转载请注明原文地址:https://kaotiyun.com/show/vffp777K
0

最新回复(0)