A.类rectangle的私有派生类是location
B.类rectangle中的public成员在类location中是私有的
C.类location中的public成员在类rectangle中是不可访问的
D.viodf(){Rectangler;intX=r.GetX();}其中intX=r.GetX();是非法语句
第1题:
下面程序段中,说法正确的是() class location{ public : int GetX(); }; class rectangle:private location { public: int GetW(); };
A.类rectangle私有派生类 location
B.类rectangle中的public成员在类 location中是私有的类
C.location中的public成员在类 rectangle中是不可访问的
D.viod f() { Rectangle r; int X=r .GetX(); } 其中int X = r .GetX();是非法语句
第2题:
3、下面程序段中,说法正确的是() class location{ public : int GetX(); }; class rectangle:private location { public: int GetW(); };
A.类rectangle的私有派生类是location
B.类rectangle中的public成员在类 location中是私有的
C.类location中的public成员在类 rectangle中是不可访问的
D.viod f() { Rectangle r; int X=r .GetX(); } 其中int X = r .GetX();是非法语句
第3题:
下列程序段执行结果是___________。 x = 1 print(type(x)) x = 1.0 print(type(x)) x = '1.0' print(type(x)
A.<class 'int'> <class 'float'> <class 'str'>
B.<class 'float'> <class 'int'> <class 'str'>
C.<class 'str'> <class 'float'> <class 'int'>
D.<class 'str'> <class 'int'> <class 'float'>
第4题:
下面程序段中,说法正确的是() class location{ public : int GetX(); }; class rectangle:private location { public: int GetW(); };
A.类rectangle的私有派生类是location
B.类rectangle中的public成员在类 location中是私有的
C.类location中的public成员在类rectangle中是不可访问的
D.viod f() { Rectangle r; int X=r .GetX(); } 其中int X = r .GetX();是非法语句
第5题:
00330038003000301585067361821下列程序段执行结果是___________。 x = 1 print(type(x)) x = 1.0 print(type(x)) x = '1.0' print(type(x)
A.<class 'int'> <class 'float'> <class 'str'>
B.<class 'float'> <class 'int'> <class 'str'>
C.<class 'str'> <class 'float'> <class 'int'>
D.<class 'str'> <class 'int'> <class 'float'>