當(dāng)前位置:高考知識網(wǎng) > 招聘筆試題 > 正文
三.
void GetMemory2(char *p, int num)
{
p = (char *)malloc(num);
}
void Test(void)
{
char *str = NULL;
GetMemory(&str, 100);
strcpy(str, "hello");
printf(str);
}
請問運行Test函數(shù)會有什么樣的結(jié)果?
答:
(1)能夠輸出hello (2 )Test函數(shù)中也未對malloc的內(nèi)存進行釋放。(3)GetMemory避免了試題1的問題,傳入GetMemory的參數(shù)為字符串指針的指針,但是在GetMemory中執(zhí)行申請內(nèi)存及賦值語句
p = (char *) malloc( num );
后未判斷內(nèi)存是否申請成功,應(yīng)加上: if ( *p == NULL ) {
...//進行申請內(nèi)存失敗處理
}
四.
void Test(void)
{
char *str = (char *) malloc(100);
strcpy(str, “hello”);
free(str);
if(str != NULL)
{
strcpy(str, “world”);
printf(str);
}
}
請問運行Test函數(shù)會有什么樣的結(jié)果?
答:執(zhí)行 char *str = (char *) malloc(100); 后未進行內(nèi)存是否申請成功的判斷;另外,在free(str)后未置str為空,導(dǎo)致可能變成一個“野”指針,應(yīng)加上: str = NULL;
五、編寫strcpy函數(shù)(10分)
已知strcpy函數(shù)的原型是
char *strcpy(char *strDest, const char *strSrc);
其中strDest是目的字符串,strSrc是源字符串。
(1)不調(diào)用C++/C的字符串庫函數(shù),請編寫函數(shù) 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的內(nèi)容復(fù)制到strDest,為什么還要char * 類型的返回值?
答:為了實現(xiàn)鏈?zhǔn)奖磉_式。 // 2分
例如 int length = strlen( strcpy( strDest, “hello world”) );
六、編寫類String的構(gòu)造函數(shù)、析構(gòu)函數(shù)和賦值函數(shù)(25分)
已知類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; // 用于保存字符串
};
請編寫String的上述4個函數(shù)。
標(biāo)準(zhǔn)答案:
// String的析構(gòu)函數(shù)
String::~String(void) // 3分
{
delete [] m_data;
// 由于m_data是內(nèi)部數(shù)據(jù)類型,也可以寫成 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:perate =(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)返回本對象的引用 // 3分
return *this;
} 更多精華的筆試題目分享:
金融常識筆試題100題
光大期貨筆試真題
財務(wù)會計類筆試題
金山職業(yè)技術(shù)學(xué)院對比四川汽車職業(yè)技術(shù)學(xué)院哪個好 附分..
時間:2025-05-22 09:08:12成都銀杏酒店管理學(xué)院在重慶高考招生計劃人數(shù)和專業(yè)代..
時間:2025-05-22 09:05:01四川上山東理工大學(xué)多少分 分數(shù)線及排名
時間:2025-05-22 09:01:18江西高考理科533分排名多少 排名多少位次
時間:2025-05-22 08:57:21大連東軟信息學(xué)院對比甘肅民族師范學(xué)院哪個好 附分數(shù)線..
時間:2025-05-22 08:53:39廣東高考455至460分左右物理可以上什么大學(xué)
時間:2025-05-22 08:49:52