- 相關推薦
編寫類String 的構造函數、析構函數和賦值函數
已知類String 的原型為:
class String
{
public:
String(const char *str = NULL); // 普通構造函數
String(const String &other); // 拷貝構造函數
~ String(void); // 析構函數
String & operate =(const String &other); // 賦值函數
private:
char *m_data; // 用于保存字符串
};
請編寫String 的上述4 個函數,
編寫類String 的構造函數、析構函數和賦值函數
。標準答案:
// String 的析構函數
String::~String(void) // 3 分
{
delete [] m_data;
// 由于m_data 是內部數據類型,也可以寫成 delete m_data;
}
// String 的普通構造函數
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);
}
}
// 拷貝構造函數
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);
}
// 賦值函數
String & String::operate =(const String &other) // 13 分
{
// (1) 檢查自賦值 // 4 分
if(this == &other)
return *this;
// (2) 釋放原有的內存資源 // 3 分
delete [] m_data;
// (3)分配新的內存資源,并復制內容 // 3 分
int length = strlen(other.m_data);
m_data = new char[length+1]; // 若能加 NULL 判斷則更好
strcpy(m_data, other.m_data);
// (4)返回本對象的引用 // 3 分
return *this;
}
【編寫類String 的構造函數、析構函數和賦值函數】相關文章:
《函數的概念》說課稿08-15
初中函數教學反思范文07-25
初中數學《反比例函數》說課稿(精選5篇)08-21
初中數學說課稿《一次函數的圖像》07-26
數學一次函數知識點總結08-06
高中數學《幾類不同增長的函數模型》說課稿07-06
高中數學教學-三角函數的性質及應用09-09
高中數學教學-三角函數的最值及綜合應用08-15
JAVA賦值運算10-16
簡析面試禮儀技巧和注意事項09-25