- 相關(guān)推薦
編寫(xiě)類String 的構(gòu)造函數(shù)、析構(gòu)函數(shù)和賦值函數(shù)
已知類String 的原型為:
class String
{
public:
String(const char *str = NULL); // 普通構(gòu)造函數(shù)
String(const String &other); // 拷貝構(gòu)造函數(shù)
~ String(void); // 析構(gòu)函數(shù)
String & operate =(const String &other); // 賦值函數(shù)
private:
char *m_data; // 用于保存字符串
};
請(qǐng)編寫(xiě)String 的上述4 個(gè)函數(shù),
編寫(xiě)類String 的構(gòu)造函數(shù)、析構(gòu)函數(shù)和賦值函數(shù)
。標(biāo)準(zhǔn)答案:
// String 的析構(gòu)函數(shù)
String::~String(void) // 3 分
{
delete [] m_data;
// 由于m_data 是內(nèi)部數(shù)據(jù)類型,也可以寫(xiě)成 delete m_data;
}
// String 的普通構(gòu)造函數(shù)
String::String(const char *str) // 6 分
{
if(str==NULL)
{
m_data = new char[1]; // 若能加 NULL 判斷則更好
*m_data = ‘\0’;
}
else
{
int length = strlen(str);
m_data = new char[length+1]; // 若能加 NULL 判斷則更好
strcpy(m_data, str);
}
}
// 拷貝構(gòu)造函數(shù)
String::String(const String &other) // 3 分
{
int length = strlen(other.m_data);
m_data = new char[length+1]; // 若能加 NULL 判斷則更好
strcpy(m_data, other.m_data);
}
// 賦值函數(shù)
String & String::operate =(const String &other) // 13 分
{
// (1) 檢查自賦值 // 4 分
if(this == &other)
return *this;
// (2) 釋放原有的內(nèi)存資源 // 3 分
delete [] m_data;
// (3)分配新的內(nèi)存資源,并復(fù)制內(nèi)容 // 3 分
int length = strlen(other.m_data);
m_data = new char[length+1]; // 若能加 NULL 判斷則更好
strcpy(m_data, other.m_data);
// (4)返回本對(duì)象的引用 // 3 分
return *this;
}
【編寫(xiě)類String 的構(gòu)造函數(shù)、析構(gòu)函數(shù)和賦值函數(shù)】相關(guān)文章:
初中函數(shù)教學(xué)反思范文07-25
初中數(shù)學(xué)《反比例函數(shù)》說(shuō)課稿(精選5篇)08-21
初中數(shù)學(xué)說(shuō)課稿《一次函數(shù)的圖像》07-26
數(shù)學(xué)一次函數(shù)知識(shí)點(diǎn)總結(jié)08-06
高中數(shù)學(xué)《幾類不同增長(zhǎng)的函數(shù)模型》說(shuō)課稿07-06
高中數(shù)學(xué)教學(xué)-三角函數(shù)的性質(zhì)及應(yīng)用09-09
高中數(shù)學(xué)教學(xué)-三角函數(shù)的最值及綜合應(yīng)用08-15
JAVA賦值運(yùn)算10-16