C++考题2002(2).doc_第1页
C++考题2002(2).doc_第2页
C++考题2002(2).doc_第3页
C++考题2002(2).doc_第4页
C++考题2002(2).doc_第5页
已阅读5页,还剩6页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

C+语言考题一、 选择题(每小题2分,共30分)1、下列对函数的缺省参数的定义和描述及对函数的调用中错误的为 。A.void showmessage(char *text,intlength=-1,int color=0);B.int palette=1;int getcolor(int pal);void showmessage(char *text,int length=-1,int color=getcolor(palette);C.在设置了函数的缺省参数后,调用函数的对应实参就必须省略。D.showmessage(“hello”,-1,8);2、下面描述及对引用的定义中正确的是 。A.int &Z;B.int m=10;float &t=&m;C.引用a做函数参数,调用该函数时,向该函数传递的实参可以是和a相同类型的变量和常量。D.返回引用类型的函数不能返回自动变量或形参的引用。3、已知const int a=1;int b=2;int *const cpint=&b;const int *pcint=&a;const int c=1;int d=2;const int &rcintc=c;const int &rcintd=d;下列赋值中正确的为 。A.*cpint=5; B.*pcint=5; C.rcintc=5; D.rcintd=5;4、下列函数中, 不能重载。A.成员函数 B.非成员函数 C.析构函数 D.构造函数5、有以下类的说明,请指出错误的地方 。class Csampleint a=2; (A)Csample(); (B)Public:Csample(int val); (C)Csample(); (D);6、关于成员函数的下述描述中, 是错误的。A. 成员函数可以设置参数的缺省值。B. 成员函数一定是内联函数。C. 成员函数可以重载。D. 成员函数可以是静态的。7、关于缺省构造函数的下述描述中, 是错误的。A 如果没有定义构造函数或缺省构造函数,编译器会自动生成缺省构造函数。B 如果类有缺省构造函数,则可以不传递参数而定义类对象。C 缺省构造函数不对类对象数据成员赋初值。D 如果定义了类的构造函数,则编译器不再生成缺省构造函数。8、下面对成员函数f()的调用A、B、C、D中,不是动态联编的为 #include iostream.hclass Apublic:virtual void f()coutA:f() calledendl; void g() f(); -(A);class B:public A public: virtual void f()coutB:f() calledf();-(B)B b;b.f();-(C)A &a=b;a.f();-(D)A a2;a2.g();delete pa;9、以下哪种构造函数不是单参数构造函数? A 复制构造函数B 只有第一个参数,其它参数为缺省的构造函数。C 缺省构造函数。D 转换构造函数。10、已知:print()函数是一个类的常成员函数,它无返回值,下列表示中, 是正确的。A void print() const;B const void print();C void const print;D void print(const);11、下面程序中对成员函数的访问中,错误的是 。#includeiostream.hclass Apublic:void f1()coutf1() calledendl;class B:protected Apublic:void f2()coutf2() calledendl;class C:private Bpublic:void f3()f1();-(A)coutf3 calledendl;void main()C c;c.f3(); -(B)c.f2(); -(C)B b;b.f2();-(D)12、派生类的构造函数的成员初始化列表中,不能包含 。A 基类的构造函数。B 派生类中对象成员的初始化。C 基类中对象成员的初始化。D 派生类中一般数据成员的初始化。13、有关虚基类的描述中错误的是 。A 最派生类构造函数中的虚基类构造函数会被调用。B 虚基类可以消除二义性。C 每个派生类构造函数成员初始化器表中都包含有对虚基类构造函数的调用,故虚基类构造函数会被调用多次。D 虚基类只有一个。14、关于虚析构函数的下述描述中, 是错误的。A 基类中析构函数为虚析构函数,则派生类中的析构函数也为虚析构函数。B 虚析构函数能保证delete运算符有效的释放基类及派生类对象。C 将析构函数定义为虚析构函数是因为类中有虚函数。D 虚析构函数并不能实现动态联编。15、关于纯虚函数和抽象类的描述中, 是错误的。A 纯虚函数没有函数体。B 抽象类及其派生类都可以定义对象。C 若某个成员函数为纯虚函数,则该类为抽象类。D 抽象类通常在类结构的顶层。二、 分析下列程序的输出结果(每小题3分,共30分)1、 #includeiostream.h#includestring.hclass Apublic:A(char *st);A();private:char string50;A:A(char *st)strcpy(string,st);coutstringendl;A:A()coutstringendl;void fun()A Funobj(fun);static A Staobj(sta);coutendl;A Globobj(Glob);void main()A Mainobj(Main);coutendl;fun(); coutendl;112、 #includeclass ctestprivate:static int count;public:ctest()+count;ctest()-count;static int getcount()return count;int ctest:count=5;void main()coutctest:getcount()object existn;ctest test1;ctest *ptest2=new ctest;coutctest:getcount()object existn;delete ptest2;coutctest:getcount()object existn;3、 #includeiostream.hclass Apublic:A(int j)a=j;int fun(int b)return (a+b*c);int c;private:int a;void main()A x(8);int A:*pc;pc=&A:c;x.*pc=5;int (A:*pfun)(int);pfun=A:fun;A *p=&x;cout*pfun)(5);4、 #includeiostream.hclass Apublic: A() a=0;coutAsD.C.n; A(int i) a=i;coutAsC.n; A() coutAsD.n;private: int a;class B:public Apublic:B()b=0;coutBsD.C-n;B(int i,int j,int k):A(i),aa(j)b=k;coutBsC-n;B()coutBsD.-n;private: int b; A aa;void main()B *pb=new B2;pb0=B(1,2,3);pb1=B();delete pb;5、 #includeiostream.hclass Apublic:A(const char *s)coutsendl;A();class B:virtual public Apublic:B(const char *s1,const char *s2):A(s1)couts2endl; ;class C:virtual public Apublic:C(const char *s1,const char *s2):A(s1)couts2endl;class D:public C,public Bpublic:D(const char *s1,const char *s2,const char *s3,const char *s4):B(s1,s3),C(s1,s2),A(s4)couts1endl;void main()D *ptr=new D(A,B,C,D); delete ptr;6、 #include iostream.hclass Apublic:virtual void act1();void act2();void act3()act1();act2();void A:act1()coutA:act1() calledendl;void A:act2()coutA:act2() calledendl;class B:public Apublic:void act1();void act2();void B:act1()coutB:act1() calledendl;void B:act2()coutB:act2() calledendl;void main()B b;b.act3();b.act1();7、 #include iostream.hclass Apublic:A()virtual void f()coutA:f() calledn;void h()coutA:h() calledendl;class B:public Apublic: B() f();virtual void f()coutB:f() calledn;void h()coutB:h() calledendl;class C:public Bpublic:C()virtual void f()coutC:f() calledn;void h()coutC:h() calledf();aa-h();void main()C *cp=new C;g(cp);delete cp;8、 #include iostream.hclass Apublic:A(int i,int j)a=i,b=j;void move(int x,int y)a+=x;b+=y;void show()couta,bendl;private:int a,b;class B:public Apublic:B(int i,int j,int k,int l):A(i,j),x(k),y(l)void show()coutx,yendl;void fun()move(3,5);void f1()A:show();private:int x,y;void main()A e(1,2);e.show();B d(3,4,5,6);d.fun();d.A:show();d.B:show();d.f1();9、 #includeiostream.hclass Apublic:virtual A()coutA:A() calledn;class B:public Apublic:B(int i)buf=new chari;B()delete buf;coutB:B() calledn;private:char *buf;void fun(A *a) delete a;void main()A *a=new B(15);fun(a);10、 #includeiostream.hclass Apublic:A(int i=1)m=i;coutCON. calledmendl;void print() coutmendl;A()coutDES. calledmendl;private:int m;void main()const int N=8;A my;my.print();my=N;my.print();三、 根据题义填空(每空一分,共15分)1、 下面程序中非缺省构造函数为复制构造函数。 #includeiostream.h#include string.hclass cmessageprivate:char *buffer;public:cmessage()buffer=new char(0);cmessage( (1) ) (2) ; (3) ;cmessage()delete buffer;void display()coutbuffern;void set(char *string)delete buffer;buffer=new charstrlen(string)+1;strcpy(buffer,string);void main()cmessage message1;message1.set(hello);cmessage message2( (4) );cmessage message3= (5) ;2、 下面程序设类B1中b1只能被本类以及派生类函数访问,类B2中b2只能被本类函数访问,函数g()可以在类以外函数中被访问,main()函数中变量m为c1经类B1继承的a及经B2继承的a之和。class Apublic:int a;class B1:public A (6) : int b1; class B2:public A (7) :int b2; (8) :int g()coutb2b1;class C:public B1,public B2private:int c;void main()C c1;int m;m= (9) + (10) ;coutm;3、 下面程序将+运算符重载为成员函数。#include”iostream.h”class counterpublic:counter()v=0;(11) operater +(12) v+; return (13) ; (14)operator +(15) couter t;t.v=v+;return t;void print()coutvendl;private:unsigned v;void main()count c;for( int j=0;j8;j+)c+;c.print();for(j=0;j8;j+)+c;c.print();四、 程序设计(25分)1 编写转换构造函数,简化下面程序中为不同操作数编写的运算符函数(10分)class Ccurrencyprivate:long dollars;int cents;public:Ccurrency()dollars=cents=0;Ccurrency(long dol,int cen)dollar

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论