(21)關于友元的概念錯誤的是
A)友元函數(shù)沒有this指針
B)調用友元函數(shù)時必須在它的實參中給出要訪問的對象
C)一個類的成員函數(shù)也可以作為另一個類的友元函數(shù)
D)只能在類的公有段聲明友元
(22)關于抽象類下面說法正確的是
A)抽象類就是其中有函數(shù)定義但沒有實現(xiàn)的類
B)抽象類是可以被實例化的
C)派生類不能成為抽象類
D)抽象類的子類必須實現(xiàn)父類中的純虛函數(shù)
(23)下面程序的結果是
#include
class test { private:
int num;
public:
test();
int getint(){return num;}
~test();};
test :: test()
{ num =0;}
test::~test()
{ cout<<"Destructor is active"< P>
{ test x[3];
cout<<"Exiting main"<>
Destructor is active
Destructor is active
Destructor is active
B)Exiting main
Destructor is active
Destructor is active
C)Exiting main
Destructor is active
D)Exiting main
(24)如果表達式--x+y中,--是作為成員函數(shù)重載的, +是作為成員函數(shù)重載的,則該表達式還可為
A)y.operator+(x.operator--(0))
B)y.operator+(x.operator--())
C)y.operator+(operator--(x,0))
D)operator+(x.operator--())
(25)下列語句不能夠用于打開C根目錄下文件test.txt的語句是
A)ifstream fin; fin.open("C:\\test.txt");
B)ifstream fin("C:\\test.txt");
C)A)和B)
D)ifstream fin; fin("C:\\test.txt");
(26)以下哪個基類中的成員函數(shù)表示純虛函數(shù)?
A)virtual void vf (int)
B)void vf (int)=0
C)virtual void vf(=0)
D)virtual void yf(int){ }
(27)下面程序輸出的結果是
#include
void main()
{ int i;
int a[3][3]={1,2,3,4,5,6,7,8,9};
for(i=0;i<3;i++)
cout << a[i][i] << " ";}
A)1 5 9
B)7 5 3
C)3 5 7
D)5 9 1
(28)派生類繼承基類的方式有
A)public
B)private
C)protected
D)以上都對
(29)下列程序的運行結果為
#include
class Location {
protected:
int X, Y;
public:
void SetX(int myx){X=myx;}
void SetY(int myy){Y=myy;}
void showxy(){cout << "X=" << X << " " << "Y=" << Y <>
private:
int H, W;
public:
void SetH(int myh){H=myh;}
void SetW(int myw){W=myw;}
void show(){ cout << "X=" << X << " " << "Y=" << " " << Y << " " << "H=" << H << " " << "W=" << W << endl;}};
void main()
{ Rectangle r1;
r1.SetX (3);
r1.SetY (5);
r1.SetH (4);
r1.SetW (6);
r1.showxy();
r1.show();}
A)X=3 Y=5
X=3 Y=5 H=4 W=6
B)X=3 Y=5
X=3 Y=5 H=3 W=6
C)X=3 Y=5
X=3 Y=4 H=4 W=6
D)X=3 Y=5
X=3 Y=3 H=4 W=6
(30)有以下程序
#include
void ss(char *s,char t)
{ while(*s)
{ if(*s==t)*s=t-′a′+′A′;
s++;}}
void main()
{ char str1[100]="abcddfefdbd",c=′d′;
ss(str1,c); cout << str1;}
程序運行后的輸出結果是
A)ABCDDEFEDBD
B)abcDDfefDbD
C)abcAAfefAbA
D)Abcddfefdb
編輯推薦:
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內蒙古 |