设有以下类的定义: class Ex {int x;public:void setx(int t=0); }; 若在类外定义成员函数setx(
11 查阅
设有以下类的定义:
class Ex
{ int x;
public:
void setx(int t=0);
};
若在类外定义成员函数setx( ),以下定义形式中正确的是
A.void setx(int t){…}
B.void Ex::setx(int t){…}
C.Ex::void setx(int t){…}
D.void Ex::setx( ){…}
参考答案: