五、編寫strcpy函數(10分)
已知strcpy函數的原型是
char *strcpy(char *strdest, const char *strsrc);
其中strdest是目的字符串,strsrc是源字符串。
(1)不調用c++/c的字符串庫函數,請編寫函數 strcpy
char *strcpy(char *strdest, const char *strsrc);
{
assert((strdest!=null) & (strsrc !=null)); // 2分
char *address = strdest; // 2分
while( (*strdest++ = * strsrc++) != ‘\0’ ) // 2分
null ;
return address ; // 2分
}
(2)strcpy能把strsrc的內容復制到strdest,為什么還要char * 類型的返回值?
答:為了實現鏈式表達式。 // 2分
例如 int length = strlen( strcpy( strdest, “hello world”) );
六、編寫類string的構造函數、析構函數和賦值函數(25分)
已知類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(void) // 3分
{
delete [] m_data;
// 由于m_data是內部數據類型,也可以寫成 delete m_data;
}
// string的普通構造函數
string::string(const char *str) // 6分
{
if(strnull)
{
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:perate =(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;
}
金山職業技術學院對比四川汽車職業技術學院哪個好 附分..
時間:2025-05-22 09:08:12成都銀杏酒店管理學院在重慶高考招生計劃人數和專業代..
時間:2025-05-22 09:05:01四川上山東理工大學多少分 分數線及排名
時間:2025-05-22 09:01:18江西高考理科533分排名多少 排名多少位次
時間:2025-05-22 08:57:21大連東軟信息學院對比甘肅民族師范學院哪個好 附分數線..
時間:2025-05-22 08:53:39廣東高考455至460分左右物理可以上什么大學
時間:2025-05-22 08:49:52
中國點擊率最高的一篇文章 !2023-08-13 03:45:29
海南上長春工業大學多少分 分數線及排名2025-05-22 09:28:45
科爾沁藝術職業學院對比山東水利職業學院哪個好 附分數線排名2025-05-22 09:25:00
呼和浩特職業學院對比山西警官職業學院哪個好 附分數線排名2025-05-22 09:22:04
四川工程職業技術學院在上海高考招生計劃人數和專業代碼(參考)2025-05-22 09:19:52
泰山科技學院對比西安理工大學高科學院哪個好 附分數線排名2025-05-22 09:16:28
江西航空職業技術學院在云南高考招生計劃人數和專業代碼(參考)2025-05-22 09:13:20
遼寧特殊教育師范高等專科學校對比江西工商職業技術學院哪個好 附分數線排名2025-05-22 09:10:51
博時基金筆試真題(四套)2023-08-27 12:17:04
國泰基金筆試題和面試題答案目2023-08-20 12:10:18
大唐電信2018校園招聘筆試題和面試題答案2023-08-21 13:41:29 




