16、之后添加適當(dāng)?shù)恼Z(yǔ)句。
(2) 完成默認(rèn)構(gòu)造函數(shù)Date的定義,使Date對(duì)象的默認(rèn)值為:year=1,month=1,day=1,請(qǐng)?jiān)谧⑨?http://* *2**"之后添加適當(dāng)?shù)恼Z(yǔ)句。
(3) 完成重載構(gòu)造函數(shù)Date(inty,intm,intd)的定義,把數(shù)據(jù)成員year,month和day分別初始化為參數(shù)y,m,d的值,請(qǐng)?jiān)谧⑨專(zhuān)?/**3* *"之后添加適當(dāng)?shù)恼Z(yǔ)句。
(4) 完成成員函數(shù)print的類(lèi)外定義,使其以"年-月-日"的格式將Date對(duì)象的值輸出到屏幕上。請(qǐng)?jiān)谧⑨專(zhuān)?/**4 **"之后添加適當(dāng)?shù)恼Z(yǔ)句。
注意:除在指定位置添加語(yǔ)句之外,請(qǐng)不要改動(dòng)程序中的其他內(nèi)源程序
17、文件main.cpp清單如下:
//main.cpp
#include
classDate
{
public:
//**2**
Date(inty,intm,intd)
{
//**3**
}
voidprint()const;
private:
//datemembers
//**1**
};
voidDate::print()const
{ //**4**
}
intmain()
{ Datenational_day(1949,10,1);
national_day
18、.print();
return0;
}
3、用C++語(yǔ)言定義MyString(包括成員函數(shù)的實(shí)現(xiàn)代碼),使之能符合下面程序及在注釋中描述的運(yùn)行結(jié)果的要求:
main()
{
MyString s1 = "0123456789", s2(5), s3;
s1.display(); // 此時(shí)顯示出: <0123456789>
s2.display(); // 此時(shí)顯示出(<>之間是五個(gè)空格): < >
s3.display(); // 此時(shí)顯示出: <>
s3 = s1;
s
19、3.display(); // 此時(shí)顯示出: <0123456789>
s2 = s1[2];
s2.display(); // 此時(shí)顯示出: <23456789>
s1.display(); // 此時(shí)顯示出: <0123456789>
s3 = s2++;
s2.display(); // 此時(shí)顯示出: <3456789>
s3.display(); // 此時(shí)顯示出: <23456789>
}
參考答案及評(píng)分標(biāo)準(zhǔn)
一. 選擇題(每
20、小題2分,共20分)
1、C 2、A 3、D 4、C 5、C
6、B 7、C 8、A 9、D 10、A
二.判斷題(每小題1分,共10分)
1、 2、√ 3、√ 4、 5、
6、 7、 8、 9、 10、√
三.填空題(每空1分,共10分)
1、 基類(lèi)成員、類(lèi)對(duì)象成員、非類(lèi)對(duì)象成員
2、const
3、friend void F();
4、析構(gòu)函數(shù)
5、8
6、指針、對(duì)象、虛函數(shù)
四.讀程序并寫(xiě)出程序的運(yùn)行結(jié)果(每題5分,共20分)
1、a=10,b=2
21、 a=10,b=10
2、Constructor
Copy_ Constructor
A=12,B=23
Constructor
A=5,B=6
Destructor
Destructor
Destructor
3、B’constructor called.
C’constructor called.
5
6
C’destructor called.
B’destructor called.
4、i=0,k=2
i=0,k=2
五.編程題(第1題9分,第2題16分,第3題15分,共40分)
1、
22、void ~A(){}:析構(gòu)函數(shù)沒(méi)有返回值,可改為~A(){};
A a;:沒(méi)有定義無(wú)參構(gòu)造函數(shù),可改為A a(10);(括號(hào)中可以是任意整數(shù)。)
a.m+=10;:不能在類(lèi)外訪問(wèn)類(lèi)的私有成員,將數(shù)據(jù)成員m的訪問(wèn)權(quán)限改為public。
2、
//**1**
int year; int month; int day;
//**2**
Date()
{
year=1;month=1;day=1;
}
//**3**
year=y;month=m;day=d;
//**4**
cout<
23、ndl;
3、
class MyString {
char cpBody[81];
public:
MyString(const char* p = NULL);
MyString(int i);
MyString& operator=(const MyString& s)
{ strncpy(cpBody, s.cpBody, 80); return *this; }
MyString& operator[](int i);
MyString& operator++(int i)
{ static
24、MyString s; s = *this;
*this = (cpBody[0] == ‘\0‘) ? *this : (*this)[1]; return s; }
void display() { printf("<%s>\n", cpBody); }
};
MyString::MyString(const char* p)
{
if (p == NULL)
cpBody[0] = ‘\0‘;
else
strncpy(cpBody, p, 80);
}
MyString::MyString(int i)
25、
{ int j;
for (j = 0; j < i && j < 80; j++)
cpBody[j] = ‘ ‘;
cpBody[j] = ‘\0‘;
}
MyString& MyString::operator[](int i)
{ static MyString s;
int j;
s = *this;
for (j = i; cpBody[j] != ‘\0‘; j++)
s.cpBody[j-i] = s.cpBody[j];
s.cpBody[j-i] = ‘\0‘;
return s;
}
第 11 頁(yè) 共 11 頁(yè)