姓名: ___________ 时间: ___________________ DCCBB AADAD
一、选择题(1*10=10)
1 .如果派生类以proctected方式继承基类,则原基类的 protected和public成员 在派生类的访问性分别是:D A. public 和 public B. public 和 protected C. protected和 public D. protected和 protected
解析:通过protected方式继承基类后,原基类的私有成员不可访问,而protected 和public成员均变成protected成员。 答案:D
2. 有如下头文件: int F1();
static int F2(); classs CA {
public:
int F3();
static int F4();
};
在所描述的函数中,具有隐含this指针的是:C A. F1 B. F2 C. F3 D. F4
本题考查的是this指针。
this指针式一个隐含的指针,它隐含于每个类的非静态成员函数中,它明确 地表示出了成员函数当前操作的数据所属的对象。当对一个对象调用成员函数 时,编译程序先将对象的地址赋值给this指针,然后调用成员函数,每次成员函 数存取数据成员时,则隐含使用this指针。
this指针是指向对象本身的指针,它只存在于类的非静态成员中。 f1,f2不 是成员函数,不存在隐含指针;f4为静态成员函数,也不含有this指针;含有this 指针的函数在调用时按thiscall调用约定调用。 故本题答案为Co
3. 派生类的成员函数不能访问基类的: C A .共有成员和保护成员 B .共有成员 C.私有成员 D .保护成员
本题考查的是继承的类型。
类的继承方式有公有继承、保护继承和私有继承三种方式。对于公有继承基 类中的成员访问属性不变,对于保护和私有继承基类中的成员转换为相应的访问 类型。但是如果基类成员的访问属性为 private的,则不能被继承。
故本题答案为Co 4.
的数据结构是
按照“后进先出”原则组织数据B
A .队列 B .栈
C.双向链表
答案为Bo
D .二叉树
5 ?下列关于虚函数的说明中,正确的是: B A .从虚基类继承的函数都是虚函数 B.虚函数不得是静态成员函数
C.只能通过指针或者引用调用虚函数 D .抽象类中的中的成员函数都是虚函 数。
答案为B
6. 已知Value是个类,value是Value的一个对象。下列以非成员函数形式重载 的运算符函数原型中,正确的是:A A. Value operator+(Value v, int i); B. Value operator+(Value v=value, int i); C. Value operator+(Value v, int=0); D. Value operator+(Value v=value, int i=0); 7. 有如下类的定义: Class MyClass {
int value; public:
MyClass(i nt n):value( n){}
int getValue() const {return value;} }; 则类Myclass的构造函数的个数是:A A. 1个 C. 3个
还有默认拷贝构造函数,应该选B
B. 2个 D. 4个
8. 有如下类的定义: class Con sta nts public:
static double GetPI(void){return 3.14159;} }; Con sta nts con sta nts;
下列各组语句中,能输出3.14159的是:B
A. cout?constants->GetPI()和 cout< #i nclude using n amespace std; class VAC { public: int f() con st{retur n 3;} int f(){return 5;} }; int main() { VAC v1; const VAC v2; cout< } 运行时的输出结果是:A A. 53 C. 55 B. 35 D. 33 10. 有如下类声明: class Base { protected: int amount; public: Base(i nt n = 0):am oun t( n){} int getAm oun t() const {retur n amoun t;} }; class Derived:public Base { protected: int value; public: Derived(i nt m, i nt n ):value(m),Base( n){} int getData() const {return value + amoun t;} }; 已知x是一个Derived对象,则下列表达式中正确的是: B A. x.value + x.getAmount(); C. x.getData() -x.amount; B. x.getData() + x.getAmount(); D. x.value + x.amount; 二、填空题(8*2=16) 400_ 6 4 4 4 4 return *this __ Dog speak Voice 1.下列中a的值是 400 #define AAA 200 #define BBB AAA+100 int a= BBB*2 2. 以下为 Windows NT下的32位C++程序,请计算 sizeof的值。 char str[] = char *p = str ; int n = 10; 请计算 sizeof (str ) = ____ 5 ______ sizeof ( p ) = _____ 4 __ sizeof ( n ) = _____ 4_ 2 “ Hello ” ; ___ void Func ( char str[1OO]) { 〃请计算 sizeof( str ) = ___ 4 ____ 100_ _ } void *p = malloc( 100 ); //请计算 sizeof ( p ) = _____ 4 ___ 3. 补充完整下面的类定义: class XCH{ char* a; public: XCH(char* aa){ // 构造函数 a=new char[strle n( aa)+1]; strcpy(a,aa); } XCH& operator=(const XCH& x){ // 重载赋值函数 delete []a; a=new char[strle n(x.a)+1]; strcpy(a,x.a); _____ J } ~XCH(){delete []a;} }; ___ return *this ______________ 4. 请写出下面程序的输出结果 #in clude