有如下类声明: class Wd{ int a; public: int b; int c; private:

admin2019-04-18  29

问题 有如下类声明:
        class Wd{
            int a;
        public:
            int b;
            int c;
        private:
            int d;
        protected:
            int e;
        };
其中访问权限为私有的成员变量有

选项 A、a和b
B、b和c
C、a和d
D、d和e

答案C

解析 本题考查类成员的访问控制,如果没有显式声明成员访问性质,则默认为私有,所以本题中a和d都为类的私有成员。
转载请注明原文地址:https://kaotiyun.com/show/hpAp777K
0

最新回复(0)