第2章 C語(yǔ)言類_第1頁(yè)
第2章 C語(yǔ)言類_第2頁(yè)
第2章 C語(yǔ)言類_第3頁(yè)
第2章 C語(yǔ)言類_第4頁(yè)
第2章 C語(yǔ)言類_第5頁(yè)
已閱讀5頁(yè),還剩14頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、18類與對(duì)象21 知識(shí)要點(diǎn)1 掌握類與對(duì)象的概念和定義方法,掌握類成員的訪問(wèn)屬性。2 掌握構(gòu)造函數(shù)的概念、定義方法和使用方法。3 掌握析構(gòu)函數(shù)的概念、定義方法和使用方法。4 掌握拷貝構(gòu)造函數(shù)的概念、定義方法和使用方法。5 掌握包含對(duì)象成員的類構(gòu)造函數(shù)的定義方法。6 掌握靜態(tài)成員的概念、定義方法、作用和特點(diǎn)。7 掌握友元的概念、定義方法、作用和特點(diǎn)。8 掌握類模板的定義格式與使用方法。22典型例題分析與解答例題1:下列有關(guān)類的說(shuō)法不正確的是( )。A 對(duì)象是類的一個(gè)實(shí)例B 任何一個(gè)對(duì)象只能屬于一個(gè)具體的類C 一個(gè)類只能有一個(gè)對(duì)象D 類與對(duì)象的關(guān)系和數(shù)據(jù)類型與變量的關(guān)系相似答案:C分析:對(duì)象是類的

2、一個(gè)實(shí)例,類與對(duì)象的關(guān)系和數(shù)據(jù)與變量的關(guān)系相似,所以一個(gè)類可以有多個(gè)對(duì)象。例題2:下面( )項(xiàng)是對(duì)構(gòu)造函數(shù)和析構(gòu)函數(shù)的正確定義。Avoid X:X(), void X:X()BX:X(參數(shù)), X:X()CX:X(參數(shù)), X:X(參數(shù))Dvoid X:X(參數(shù)), void X:X(參數(shù))答案:B分析構(gòu)造函數(shù)無(wú)返回類型、可帶參數(shù)、可重載;析構(gòu)函數(shù)無(wú)返回類型、不可帶參數(shù)、不可重載。例題3:( )的功能是對(duì)象進(jìn)行初始化。 A析構(gòu)函數(shù) B. 數(shù)據(jù)成員 C.構(gòu)造函數(shù) D.靜態(tài)成員函數(shù)答案:C分析:當(dāng)一個(gè)對(duì)象定義時(shí),C+編譯系統(tǒng)自動(dòng)調(diào)用構(gòu)造函數(shù)建立該對(duì)象并進(jìn)行初始化;當(dāng)一個(gè)對(duì)象的生命周期結(jié)束時(shí),C+編

3、譯系統(tǒng)自動(dòng)調(diào)用析構(gòu)函數(shù)注銷該對(duì)象并進(jìn)行善后工作;例題4:下列表達(dá)方式正確的是( )。Aclass P B class Ppublic: public:int x=15; int x; void show()cout<<x; void show()cout<<x; ; C class P D. class P int f; public: ; int a; f=25; void Seta (int x) a=x;答案:D分析:在類體內(nèi)不可對(duì)數(shù)據(jù)成員進(jìn)行初始化;類定義結(jié)束時(shí)需用分號(hào);只有類中的成員函數(shù)才能存取類中的私有數(shù)據(jù)。例題5: 拷貝構(gòu)造函數(shù)具有的下列特點(diǎn)中,( )是錯(cuò)

4、誤的。A 如果一個(gè)類中沒(méi)有定義拷貝構(gòu)造函數(shù)時(shí),系統(tǒng)將自動(dòng)生成一個(gè)默認(rèn)的B 拷貝構(gòu)造函數(shù)只有一個(gè)參數(shù),并且是該類對(duì)象的引用C 拷貝構(gòu)造函數(shù)是一種成員函數(shù)D 拷貝構(gòu)造函數(shù)的名字不能用類名答案:D分析:如果一個(gè)類中沒(méi)有定義拷貝構(gòu)造函數(shù)時(shí),系統(tǒng)將自動(dòng)生成一個(gè)默認(rèn)的;拷貝構(gòu)造函數(shù)只有一個(gè)參數(shù),并且是該類對(duì)象的引用;拷貝構(gòu)造函數(shù)的名字與類同名,并且不被指定返回類型;拷貝構(gòu)造函數(shù)是一種成員函數(shù)。例題6:關(guān)于靜態(tài)成員的描述中,( )是錯(cuò)誤的。A 靜態(tài)成員可分為靜態(tài)數(shù)據(jù)成員和靜態(tài)成員函數(shù)B 靜態(tài)數(shù)據(jù)成員定義后必須在類體內(nèi)進(jìn)行初始化C 靜態(tài)數(shù)據(jù)成員初始化不使用其構(gòu)造函數(shù)D 靜態(tài)數(shù)據(jù)成員函數(shù)中不能直接引用非靜態(tài)成員

5、答案:B分析:靜態(tài)成員可分為靜態(tài)數(shù)據(jù)成員和靜態(tài)成員函數(shù);靜態(tài)數(shù)據(jù)成員被定義后,必須對(duì)它進(jìn)行初始化,初始化在類體外進(jìn)行,一般放在該類的實(shí)現(xiàn)部分最合適,也可以放在其他位置,例如,放在主函數(shù)前面等;靜態(tài)數(shù)據(jù)成員初始化與該類的構(gòu)造函數(shù)和析構(gòu)函數(shù)無(wú)關(guān);在靜態(tài)成員函數(shù)的實(shí)現(xiàn)中,可以直接引用靜態(tài)成員,但不能直接引用非靜態(tài)成員。例題7:關(guān)于友元的描述中,( )是錯(cuò)誤的。A 友元函數(shù)是成員函數(shù),它被說(shuō)明在類體內(nèi)B 友元函數(shù)可直接訪問(wèn)類中的私有成員C 友元函數(shù)破壞封裝性,使用時(shí)盡量少用D 友元類中的所有成員函數(shù)都是友元函數(shù)答案:A分析:友元函數(shù)是非成員函數(shù),在類體內(nèi)說(shuō)明了,在類體外定義,定義和調(diào)用等同于一般的普通

6、函數(shù);由于它可以直接訪問(wèn)類的私有成員,因此破壞了類的封裝性和隱藏性,盡量少用。例題8:設(shè)有如下程序結(jié)構(gòu):class Box ;void main()Box A,B,C; 該程序運(yùn)行時(shí)調(diào)用 (1) 次構(gòu)造函數(shù);調(diào)用 (2) 次析構(gòu)函數(shù)。答案:(1)3 (2)3分析:每創(chuàng)建一個(gè)對(duì)象自動(dòng)調(diào)用一次構(gòu)造函數(shù),在這里創(chuàng)建了A、B、C三個(gè)對(duì)象,所以共調(diào)用了三次構(gòu)造函數(shù);每釋放一個(gè)對(duì)象,系統(tǒng)自動(dòng)調(diào)用一次析構(gòu)函數(shù),A、B、C對(duì)象釋放時(shí),分別調(diào)用析構(gòu)函數(shù),所以析構(gòu)函數(shù)共調(diào)用了三次。例題9:設(shè)A為test類的對(duì)象且賦有初值,則語(yǔ)句test B(A); 表示 。答案:將對(duì)象A復(fù)制給對(duì)象B。分析:執(zhí)行test B(A)

7、;語(yǔ)句相當(dāng)于調(diào)用了默認(rèn)復(fù)制構(gòu)造函數(shù),將A對(duì)象的屬性復(fù)制給B對(duì)象。例題10:利用“對(duì)象名.成員變量”形式訪問(wèn)的對(duì)象成員僅限于被聲明為 (1) 的成員;若要訪問(wèn)其他成員變量,需要通過(guò) (2) 函數(shù)或 (3) 函數(shù)。答案:(1) public (2) 成員函數(shù) (3)友元函數(shù)分析:類體內(nèi)的數(shù)據(jù)成員可聲明為公有的、私有的和保護(hù)的,公有的數(shù)據(jù)成員可利用“對(duì)象名.成員變量”形式來(lái)進(jìn)行訪問(wèn);私有的數(shù)據(jù)成員能被類中的其他成員函數(shù)或友元函數(shù)所調(diào)用;保護(hù)的數(shù)據(jù)成員可以在類體中使用,也可以在派生類中使用,但不能在其他類外通過(guò)對(duì)象使用。例題11:分析找出以下程序中的錯(cuò)誤,說(shuō)明錯(cuò)誤原因,給出修改方案使之能正確運(yùn)行。#i

8、nclude<iostream.h>class one public: int a1,a2;one(int x1=0, x2=0);void main()one data(2,3); cout<<data.a1<<endl; cout<<data.a2<<endl;分析:出錯(cuò)原因:構(gòu)造函數(shù)參數(shù)表語(yǔ)法錯(cuò);構(gòu)造函數(shù)沒(méi)有函數(shù)體;類的對(duì)象不能直接訪問(wèn)類的私有成員變量。改正后的程序如下: #include<iostream.h> class one int a1, a2; public: one(int x1=0, int x2=0

9、) a1=x1;a2=x2; int geta1() return a1; int geta2() return a2; ;void main()one data(2,3); cout<<data.geta1()<<endl; cout<<data.geta2()<<endl;例題12:分析以下程序的錯(cuò)誤原因,給出修改方案使之能正確運(yùn)行。#include <iostream.h>class Amplifier float invol,outvol;public: Amplifier(float vin,float vout) invo

10、l=vin;outvol=vout; float gain(); Amplifier: floatgain() return outvol/invol; void main() Amplifier amp(5.0,10.0); cout<<"nnThe gain is =>"<<gain()<<endl;分析:成員函數(shù)在類體外定義格式是:函數(shù)返回類型 類名:成員函數(shù)名(參數(shù)表);成員函數(shù)調(diào)用格式是:對(duì)象名.成員函數(shù)名(參數(shù)表)。改正后的程序如下:#include <iostream.h>class Amplifier f

11、loat invol,outvol;public: Amplifier(float vin,float vout) invol=vin;outvol=vout; float gain(); float Amplifier:gain() return outvol/invol; void main() Amplifier amp(5.0,10.0); cout<<"nnThe gain is =>"<<amp.gain()<<endl;例題13:下列程序的運(yùn)行結(jié)果是 。#include <iostream.h>class

12、point int x,y;public:point(int a,int b)x=a;y=b; cout<<"calling the constructor function."<<endl;point(point &p);friend point move(point q);point()cout<<"calling the destructor function.n"int getx() return x;int gety() return y;point:point(point &p)x=p.x;

13、 y=p.y; cout<<"calling the copy_initialization constructor function.n"point move(point q)cout<<"OK!n" int i,j; i=q.x+10; j=q.y+20; point r(i,j); return r;void main() point m(15,40),p(0,0); point n(m); p=move(n); cout<<"p="<<p.getx()<<"

14、,"<<p.gety()<<endl;分析:根據(jù)構(gòu)造函數(shù)、拷貝構(gòu)造函數(shù)和友元函數(shù)的特點(diǎn),執(zhí)行該程序后,輸出結(jié)果是:calling the constructor function.calling the constructor function.calling the copy_initialization constructor function.calling the copy_initialization constructor function.OK!calling the constructor function.calling the copy_i

15、nitialization constructor function.calling the destructor function.calling the destructor function.calling the destructor function.P=25,60calling the destructor function.calling the destructor function.calling the destructor function.說(shuō)明:(1)構(gòu)造函數(shù)執(zhí)行三次,分別初始化主函數(shù)中的對(duì)象m,p和move函數(shù)中的對(duì)象r。(2)拷貝構(gòu)造函數(shù)共執(zhí)行了三次。第一次,初始化

16、對(duì)象n;第二次在調(diào)用函數(shù)move()時(shí),實(shí)參n給形參q進(jìn)行初始化;第三次是執(zhí)行函數(shù)move的return r;語(yǔ)句時(shí),系統(tǒng)用r初始化一個(gè)匿名對(duì)象時(shí)使用了拷貝構(gòu)造函數(shù)。(3)析構(gòu)函數(shù)執(zhí)行了六次。在退出函數(shù)move時(shí)釋放對(duì)象r和q共調(diào)用二次;返回主函數(shù)后,匿名對(duì)象賦值給對(duì)象p后,釋放匿名對(duì)象又調(diào)用一次析構(gòu)函數(shù);最后退出整個(gè)程序時(shí)釋放對(duì)象m,n和p調(diào)用三次。例題14:定義一個(gè)學(xué)生類,其中有3個(gè)數(shù)據(jù)成員:學(xué)號(hào)、姓名、年齡,以及若干成員函數(shù)。同時(shí)編寫main函數(shù)使用這個(gè)類,實(shí)現(xiàn)對(duì)學(xué)生數(shù)據(jù)的賦值和輸出。程序代碼如下:#include<iostream.h>#include<string.

17、h>class student int no; char name10; int age;public: student(int i, char *str, int g) no=i;strcpy(name,str);age=g;student( )no=0; strcpy(name,”none”);age=-1;void display()if (no>0) cout<<”no” <<no<<”:”<<name<<” is ”<<age<<” years old.n”; else cout<&

18、lt;”no”<<no<<”: None!n”;void main() student d1(1001,”Tom”,18);d1.display();student d2;d2.display();例題15:計(jì)算兩點(diǎn)之間的距離。 方法一:可以定義點(diǎn)類(Point),再定義一個(gè)類(Distance)描述兩點(diǎn)之間的距離,其數(shù)據(jù)成員為兩個(gè)點(diǎn)類對(duì)象,兩點(diǎn)之間距離的計(jì)算可設(shè)計(jì)由構(gòu)造函數(shù)來(lái)實(shí)現(xiàn)。#include<iostream.h>#include<math.h>class Point public: Point(int a=0, int b=0) x=a

19、; y=b; int xcord() return x; int ycord () return y; private: int x,y;class Distance public: Distance(Point q1,Point q2); double getdist() return dist; private: Point p1,p2; double dist;Distance:Distance(Point q1,Point q2):p1(q1),p2(q2) double x=double(p1.xcord()-p2.xcord(); double y=double(p1.ycord(

20、)-p2.ycord(); dist=sqrt(x*x+y*y);void main() Point p(0,0),q(1,1);Distance dis(p,q);cout<<”The distance is: ”<<dis.getdist()<<endl;方法2:將兩點(diǎn)之間距離函數(shù)聲明為Point類的友元函數(shù)。#include<iostream.h>#include<math.h>class Pointpublic: Point(int a=0, int b=0) x=a; y=b; int xcord() return x; i

21、nt ycord () return y; private: int x,y;friend double Distance(Point p1,Point p2);double Distance(Point p1,Point p2) double dx=double(p1.x-p2.x); double dy=double(p1.y-p2.y); return sqrt(dx*dx+dy*dy);void main() Point q1(0,0),q2(1,1);cout<<”The distance is: ”<<Distance(q1,q2)<<endl;

22、23教材習(xí)題分析與解答1  選擇題(1)對(duì)類的構(gòu)造函數(shù)和析構(gòu)函數(shù)描述正確的是( )。A.   構(gòu)造函數(shù)可以重載,析構(gòu)函數(shù)不能重載B.   構(gòu)造函數(shù)不能重載,析構(gòu)函數(shù)可以重載C.   構(gòu)造函數(shù)可以重載,析構(gòu)函數(shù)也可以重載D.   構(gòu)造函數(shù)不能重載,析構(gòu)函數(shù)也不能重載答案:A(2)類的析構(gòu)函數(shù)的作用是( D )。A.一般成員函數(shù) B.類的初始化 C.對(duì)象初始化 D.刪除對(duì)象答案:D(3)假設(shè)OneClass為一個(gè)類,則該類的拷貝初始化構(gòu)造函數(shù)的聲明語(yǔ)句為( )。A.OneClass(OneClass p); B. OneClass& (On

23、eClass p);C. OneClass(OneClass & p); D. OneClass (OneClass *p);答案:C(4)下面對(duì)于友元函數(shù)描述正確的是( )。A.友元函數(shù)的實(shí)現(xiàn)必須在類的內(nèi)部定義B.友元函數(shù)是類的成員C.友元函數(shù)破壞了類的封裝性和隱藏性D.友元函數(shù)不能訪問(wèn)類的私有成員答案:C(5)對(duì)于結(jié)構(gòu)中定義的成員,其默認(rèn)的訪問(wèn)權(quán)限為( )。A.public B. protected C.private D. static答案:C(6)為了使類中的某個(gè)成員不能被類的對(duì)象通過(guò)成員操作符訪問(wèn),則不能把該成員的訪問(wèn)權(quán)限定義為( )。 A.public B. protect

24、ed C.private D. static答案:A(7)下面對(duì)靜態(tài)數(shù)據(jù)成員的描述中,不正確的是( )。A.靜態(tài)數(shù)據(jù)成員可以在類體內(nèi)進(jìn)行初始化B.靜態(tài)數(shù)據(jù)成員不可以在類體內(nèi)進(jìn)行初始化C.靜態(tài)數(shù)據(jù)成員不能受private控制符的作用D.靜態(tài)數(shù)據(jù)成員調(diào)用前必須初始答案:A(8)下面對(duì)靜態(tài)數(shù)據(jù)成員的描述中,正確的是( )。A.靜態(tài)數(shù)據(jù)成員是類的所有對(duì)象共享的數(shù)據(jù)B.類的每一個(gè)對(duì)象都有自己的靜態(tài)數(shù)據(jù)成員C.類的不同對(duì)象有不同的靜態(tài)數(shù)據(jù)成員值D.靜態(tài)數(shù)據(jù)成員不能通過(guò)類的對(duì)象調(diào)用答案:A2   寫出下列程序的運(yùn)行結(jié)果。(1)#include <iostream.h>class Poi

25、nt int x,y; public: Point()x=1;y=1; Point()cout<<"Point "<<x<<','<<y<<" is deleted."<<endl; ;void main()Point a;運(yùn)行結(jié)果為:Point 1,1 is deleted.(2) #include <iostream.h>#include <conio.h>int count=0;class Point int x,y; public: P

26、oint() x=1;y=1;count+; Point() count-;friend void display();;void display() cout <<"There are "<<count<<" points,"<<endl;void main() Point a; display(); Point b5; display(); display();運(yùn)行結(jié)果為:There are 1 points,There are 6 points,There are 1 points,(3)#inclu

27、de<iostream.h> class Csample int i; public:Csample( );void Display( );Csample();Csample:Csample( ) cout<<”Constructor”<<”,”;i=0; void Csample:Display() cout<<”i=”<<i<<”,”;Csample:Csample( ) cout<<”Destructor”<<endl;void main( ) Csample a;a.Display( );運(yùn)

28、行結(jié)果為:Constructor,i=0,Destructor(4) #include <iostream.h>#include <conio.h>class Csample int i; public: Csample() cout <<"constructor1" <<endl; Csample(int val) cout <<"Constructor2"<<endl;i=val; void Display()cout<<"i="<<i

29、<<endl; Csample()cout<<"Destructor"<<endl;getch(); ;void main()Csample a,b(10); a.Display();b.Display();運(yùn)行結(jié)果為:Constructor1Constructor2i=-858993460i=10DestructorDestructor(5)#include<iostream.h>class Csampleprivate: int i; static int k; public: Csample( ); void Displ

30、ay( );int Csample:k=0;Csample:Csample( ) i=0; k+; void Csample:Display( ) cout<<”i=”<<i<<”,k=”<<k<<endl;void main( ) Csample a,b;a.Display( );b.Display( );運(yùn)行結(jié)果為:i=0,k=2i=0,k=23按要求編寫程序。(1)編寫一個(gè)程序,設(shè)計(jì)一個(gè)產(chǎn)品類Product,其定義如下: class Product char *name; /產(chǎn)品名稱int price; /產(chǎn)品單價(jià)int qua

31、ntity; /剩余產(chǎn)品數(shù)量public:product(char *n,int p int q); /構(gòu)造函數(shù) product( ); /析構(gòu)函數(shù) void buy(int money); /購(gòu)買產(chǎn)品 void get() const; /顯示剩余產(chǎn)品數(shù)量 ;并用數(shù)據(jù)進(jìn)行測(cè)試。(2)計(jì)算兩點(diǎn)之間的距離。 提示:可以定義點(diǎn)類(Point),再定義一個(gè)類(Distance)描述兩點(diǎn)之間的距離,其數(shù)據(jù)成員為兩個(gè)點(diǎn)類對(duì)象,兩點(diǎn)之間距離的計(jì)算可設(shè)計(jì)由構(gòu)造函數(shù)來(lái)實(shí)現(xiàn)。參照本章例15(3)定義盒子Box類,要求具有以下成員:可設(shè)置盒子形狀;可計(jì)算盒子體積;可計(jì)算盒子的表面積。#include<ios

32、tream.h>class Box int x,y,z; int v,s;public:void init(int x1=0,int y1=0,int z1=0) x=x1;y=y1;z=z1; void volue() v=x*y*z; void area() s=2*(x*y+x*z+y*z); void show() cout<<"x= "<<x<<" y= "<<y<<" z="<<z<<endl; cout<<"s

33、= "<<s<<" v= "<<v<<endl; ;void main() Box a;a.init(2,3,4);a.volue();a.area();a.show();(4)定義計(jì)數(shù)器類Counter。要求具有以下成員:計(jì)數(shù)器值;可進(jìn)行增值和減值記數(shù);可提供記數(shù)值。#include<iostream.h>class Counter int n; public: Counter(int i=0) n=i; void init_Counter(int m) n=m; void in_Counter() n

34、+; void de_Counter() n-; int get_Counter() return n; void show() cout<<n<<endl;void main() Counter a; a.in_Counter(); a.show(); a.init_Counter(10); a.show(); a.de_Counter(); cout<<a.get_Counter()<<endl;(5)編寫一個(gè)程序計(jì)算兩個(gè)給定的長(zhǎng)方形的周長(zhǎng)和面積。#include<iostream.h>class rectangle int le

35、n,wid; public:rectangle(int i=0,int j=0) len=i;wid=j; friend int area(rectangle temp) int s=temp.len*temp.wid; return s; friend fun(rectangle temp) int p=2*(temp.len+temp.wid); return p;void main() rectangle a(10,20); cout<<"長(zhǎng)方形的周長(zhǎng)和面積為:"<<area(a)<<"t"<<fun

36、(a)<<endl; rectangle b(100,200); cout<<"長(zhǎng)方形的周長(zhǎng)和面積為:"<<area(b)<<"t"<<fun(b)<<endl;(6)編寫一個(gè)程序,采用一個(gè)類求n!,并輸出10!的值。 #include<iostream.h>class fac int p; public: fac() p=1;fac( int j)p=1; if(j>=0) for(int i=1 ;i<=j;i+) p=p*i; else cout<

37、<"數(shù)據(jù)錯(cuò)誤n"void show() cout<<" 階乘為:"<<p<<endl;void main() int n; cout<<"請(qǐng)輸入一個(gè)整數(shù):" cin>>n; fac a(n); cout<<n; a.show();(7)編寫一個(gè)程序,設(shè)計(jì)一個(gè)Cdate類,它應(yīng)該滿足下面的條件:1)用這樣的格式輸出日期:日-月-年;2)輸出在當(dāng)前日期上加兩天后的日期;3)設(shè)置日期。#include<iostream.h>class Cdate in

38、t year,month,day; int y1,m1,d1;public: void setdate(int y,int m,int d)year=y;month=m;day=d;void show()cout<<"當(dāng)前日期: "<<day<<"-"<<month<<"-"<<year<<endl; cout<<"兩天后日期:"<<d1<<"-"<<m1<&

39、lt;"-"<<y1<<endl; void datetwo() /加一天后的年月日 d1=day;y1=year;m1=month; for(int i=0;i<2;i+) d1+; switch(d1) case 29:if(!(month=2 &&(year%400=0|year%4=0&&year%100!=0) m1=3;d1=1;break; case 30:if(month=2 &&(year%400=0|year%4=0&&year%100!=0) m1=3;d1=

40、1;break; case 31:if(month=4|month=6|month=9|month=11) m1=m1+1;d1=1;break; case 32: m1=m1+1;d1=1;if(month=12)y1=y1+1;m1=1;break; ;void main() Cdate d; int y,m,d1;cout<<"請(qǐng)輸入年月日: "cin>>y>>m>>d1; d.setdate(y,m,d1);/加一天 d.setdate(y,m,d1);/再加一天 d.datetwo(); d.show();3.4 補(bǔ)

41、充習(xí)題1選擇題(1) 下列有關(guān)類的說(shuō)法不正確的是 。A.類是一種用戶自定義的數(shù)據(jù)類型B.只有類中的成員函數(shù)或類的友元函數(shù)才能存取類中的私有數(shù)據(jù)C.在類中(用class定義),如果不作特別說(shuō)明,所有的數(shù)據(jù)均為私有數(shù)據(jù)D.在類中(用class定義),如果不作特別說(shuō)明,所有的成員函數(shù)均為公有數(shù)據(jù)(2) 以下有關(guān)析構(gòu)函數(shù)的敘述不正確的是( )A. 在一個(gè)類只能定義一個(gè)析構(gòu)函數(shù) B. 析構(gòu)函數(shù)和構(gòu)造函數(shù)一樣可以有形參C. 析構(gòu)函數(shù)不允許用返回值 D. 析構(gòu)函數(shù)名前必須冠有符號(hào)“”(3) 以下有關(guān)類與結(jié)構(gòu)體的敘述不正確的是( )A. 結(jié)構(gòu)體中只包含數(shù)據(jù);類中封裝了數(shù)據(jù)和操作 B. 結(jié)構(gòu)體的成員對(duì)外界通常是

42、開放的;類的成員可以被隱藏C. 用struct不能聲明一個(gè)類型名;而class可以聲明一個(gè)類名D. 結(jié)構(gòu)體成員默認(rèn)為public;類成員默認(rèn)為private(4) 以下敘述中不正確的是( )A. 一個(gè)類的所有對(duì)象都有各自的數(shù)據(jù)成員,可以共享函數(shù)成員B. 一個(gè)類中可以有多個(gè)同名的成員函數(shù)C. 一個(gè)類中可以有多個(gè)構(gòu)造函數(shù)、多個(gè)析構(gòu)函數(shù)D. 在一個(gè)類中可以聲明另一個(gè)類的對(duì)象作為它的數(shù)據(jù)成員(5) 以下不屬于構(gòu)造函數(shù)特征的是( )A. 構(gòu)造函數(shù)名與類名相同 B. 構(gòu)造函數(shù)可以重載C. 構(gòu)造函數(shù)可以設(shè)置默認(rèn)參數(shù) D. 構(gòu)造函數(shù)必須指定函數(shù)類型(6) 以下有關(guān)類和對(duì)象的敘述不正確的是( )A. 任何一個(gè)對(duì)

43、象都?xì)w屬于一個(gè)具體的類B. 類與對(duì)象的關(guān)系和數(shù)據(jù)類型與變量的關(guān)系相似C. 類的數(shù)據(jù)成員不允許是另一個(gè)類的對(duì)象D. 一個(gè)類可以被實(shí)例化成多個(gè)對(duì)象(7) 設(shè)有定義:class person int num; char name10;public: void init(int n, char *m); .;person std30;則以下敘述不正確的是( )A. std是一個(gè)含有個(gè)元素的對(duì)象數(shù)組B. std數(shù)組中的每一個(gè)元素都是person類的對(duì)象C. std數(shù)組中的每一個(gè)元素都有自己的私有變量num和nameD. std數(shù)組中的每一個(gè)元素都有各自的成員函數(shù)init(8) 設(shè)有以下類的定義:clas

44、s Ex int x; public:void setx(int t=0);若在類外定義成員函數(shù)setx(),以下定義形式中正確的是( )A. void setx(int t) . B. void Ex:setx(int t) . C. Ex:void setx(int t) . D. void Ex:setx() . (9) 以下關(guān)于靜態(tài)成員變量的敘述不正確的是( )A靜態(tài)成員變量為類的所有對(duì)象所公有B靜態(tài)成員變量可以在類內(nèi)任何位置上聲明C靜態(tài)成員變量的賦初值必須放在類外D定義靜態(tài)成員變量時(shí)必須賦初值(10) 定義靜態(tài)成員函數(shù)的主要目的是( )A方便調(diào)用 B有利于數(shù)據(jù)隱藏C處理類的靜態(tài)成員變

45、量 D便于繼承(11) 以下敘述不正確的是( ) 使用靜態(tài)數(shù)據(jù)成員:A可以節(jié)省內(nèi)存空間 B是為了解決數(shù)據(jù)共享問(wèn)題C可以直接用類名來(lái)引用 D可以提高序運(yùn)算速度2.填空題(1) OOP技術(shù)由 類 、 對(duì)象 、方法、消息和繼承五個(gè)基本的概念所組成。(2) 類的成員函數(shù)可以在 類中 定義,也可以在 類外 定義。(3) 類test的析構(gòu)函數(shù)名是 test() 。(4) 類是用戶定義的類型,具有類類型的變量稱作_對(duì)象_。(5) 一個(gè)類的析構(gòu)函數(shù)不允許有 重載 。(6) 建立對(duì)象時(shí),為節(jié)省內(nèi)存,系統(tǒng)只給_對(duì)象_分配內(nèi)存。(7) 用于定義C+的類的關(guān)鍵字有_class_、_struct_和union。(8)

46、類test的構(gòu)造函數(shù)是和_類或test()_同名的函數(shù),析構(gòu)函數(shù)是_ test()_。(9) 類中的數(shù)據(jù)和成員函數(shù)默認(rèn)訪問(wèn)類型為 private 。(10) 當(dāng)建立一個(gè)新對(duì)象時(shí),程序自動(dòng)調(diào)用_構(gòu)造函數(shù)_。 3. 改錯(cuò)題(1) 下面的程序定義了一個(gè)Point類,找出程序中的錯(cuò)誤語(yǔ)句并改正。 #include<iostream.h> class Point int x;public: void Point(int a) x=a; int Getx()return x; void Show() cout<<Getx()<<endl; ; void main() Point A(76); cout<<A.Show(); (2) 根據(jù)靜態(tài)成員的特點(diǎn),指出下列程序的錯(cuò)誤。#include<iostream.h>#include<string.h>class part public: Part(char *pname=”no name”) strncpy(name,pname); noofpart+; no=noofpart; cout<<”create the no: ”<<noofpart<&

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論