问题 填空题

试题源程序文件清单如下:
//proj1. cpp
#include<iostream>
using namespace std;
class MyClass
public:
MyClass():count(0) cout<<"This object is";
//ERROR********found********
void Inc() const (1)
cout<<"no."<<++count<<endl;


private:
//ERROR********found********
int count=0;(2)
;
int main()
MyClass*obj=new MyClass;
//ERROR********found********
* obj.Inc(); (3)
return 0:

答案

参考答案:int count;

解析: 在类体内不能对数据初始化,数据的初始化由构造函数完成。

问答题 简答题
单项选择题