有如下类定义: classAA { int a; public: int getRefoconst{return&a;} ∥① int getVaheoconst{return a;} ∥

admin2020-11-11  26

问题 有如下类定义:
    classAA
    {
    int a;
    public:
      int getRefoconst{return&a;}    ∥①
      int getVaheoconst{return a;}    ∥②
      void set(int n)const{a=n;}    ∥③
      friend void show(AA aa)const { cout<    };
    其中的四个函数定义中正确的是(    )。

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

答案B

解析 此题考查了常成员函数和友元函数的概念。选项A中,getRef()函数的返回值和函数函数类型不符,故错误;C选项中set()常成员函数改变了数据成员的值,这是不允许的:D选项中show()函数被同时定义成友元函数和常成员函数是错误的。
转载请注明原文地址:https://kaotiyun.com/show/kayp777K
0

最新回复(0)