(单选题)
若有类Z说明class Z{staticint a;public:static void fStatic(Z&);};int Z::a=0;Z objZ;,则函数fStatic中访问数据a错误的是()。
Avoid Z::fStatic(){obj Z.a=1;}
Bvoid Z::fStatic(){a=1;}
Cvoid Z::fStatic(){this->a=0;}
Dvoid Z::fStatic(){Z::a=0;}
正确答案
答案解析
略
相似试题
(单选题)
若有类模板声明:template classTclass{int k;public:Tclass(int);//……};以下正确的说明语句正确的是()
(单选题)
若有类W说明class W{int a;public:voidfConst(int&)const;};,则函数fConst的正确定义是()
(单选题)
若有类T说明class T{inti;friend void fFriend(T&,int);};,则函数fFriend的错误定义是()
(单选题)
若有intx,y,z;则表达式(x+y>z)是()
(单选题)
若有intx,y,z;则表达式(x+y+z)是()
(单选题)
若有intx,y,z;则表达式(x>y&&x>z)是()
(单选题)
若有intx,y,z;则表达式(x+3>y-1&&x>z)的类型是()
(填空题)
若有x=1,y=2,z=3,则表达式(x
(单选题)
若有说明语句:charc=’/72’;则变量c()。