有如下类定义: class Test { public: Test(){a=0;c=0;) //① int f(int a)const{this一>a=a;} //② static int g()

admin2020-11-11  4

问题 有如下类定义:
    class Test
    {
    public:
    Test(){a=0;c=0;)    //①
    int f(int a)const{this一>a=a;}    //②
    static int g(){retum a;}    //③
    void. h(int b){Test::b=b;);    //④
    private:
    int a:
    static int b:
    const int c;
    };
    int Test::b=0;
    在标注号码的行中,能被正确编译的是(     )。

选项 A、①
B、②
C、③
D、④

答案D

解析 此题考查的是类的定义。一个类的长数据成员的初始化只能在成员初始化列表中进行,故选项A错误;常成员函数不能更新对象的数据成员,故选项B错误;静态成员函数可以直接访问类中说明的静态成员,但不能直接访问类中说明的非静态成员,故选项C错误。
转载请注明原文地址:https://kaotiyun.com/show/HZyp777K
0

相关试题推荐
随机试题
最新回复(0)