程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++/C試題

C++/C試題

編輯:C++入門知識

C++/C試題的答案與評分標准
一、請填寫BOOL , float, 指針變量 與“零值”比較的if 語句。(10分)

請寫出BOOL flag 與“零值”比較的if 語句。(3分)
標准答案:
if ( flag ) 
if ( !flag )
如下寫法均屬不良風格,不得分。
 if (flag == TRUE) 
 if (flag == 1 )  
 if (flag == FALSE)   
 if (flag == 0)   

請寫出float x 與“零值”比較的if 語句。(4分)
標准答案示例:
const float EPSINON = 0.00001; 
if ((x >= - EPSINON) && (x <= EPSINON)
不可將浮點變量用“==”或“!=”與數字比較,應該設法轉化成“>=”或“<=”此類形式。
如下是錯誤的寫法,不得分。
 if (x == 0.0)  
 if (x != 0.0)   

請寫出char *p 與“零值”比較的if 語句。(3分)
標准答案:
if (p == NULL) 
if (p != NULL)
如下寫法均屬不良風格,不得分。
 if (p == 0)  
 if (p != 0)   
 if (p) 
 if (!)   
二、以下為Windows NT下的32位C++程序,請計算sizeof的值(10分)
void Func ( char str[100]) 
{ 
請計算
sizeof( str ) = 4  (2分)
} 
 char   str[] = “Hello” ; 
 char *p = str ; 
int n = 10; 
請計算
sizeof (str ) = 6  (2分)
sizeof ( p ) = 4  (2分)
sizeof ( n ) = 4  (2分)
void *p = malloc( 100 ); 
請計算
sizeof ( p ) = 4  (2分)
三、簡答題(25分)
1、頭文件中的ifndef/define/endif 干什麼用?(5分)

答:防止該頭文件被重復引用.

2、#include 和#include “filename.h” 有什麼區別?(5分)
答:對於#include ,編譯器從標准庫路徑開始搜索filename.h

對於#include “filename.h” ,編譯器從用戶的工作路徑開始搜索filename.h

3、const 有什麼用途?(請至少說明兩種)(5分)
答:(1)可以定義const 常量

(2)const可以修飾函數的參數、返回值,甚至函數的定義體。被const修飾的東西都受到強制保護,可以預防意外的變動,能提高程序的健壯性。

4、在C++ 程序中調用被C編譯器編譯後的函數,為什麼要加extern “C”? (5分)
答:C++語言支持函數重載,C語言不支持函數重載。函數被C++編譯後在庫中的名字
與C語言的不同。假設某個函數的原型為: void foo(int x, int y); 該函數被C編譯器編譯後在庫中的名字為_foo,而C++編譯器則會產生像_foo_int_int之類的名字。C++提供了C連接交換指定符號extern“C”來解決名字匹配問題。
5、請簡述以下兩個for循環的優缺點(5分)

for (i=0; i

if (condition) 
{ 
   for (i=0; i四、有關內存的思考題(每小題5分,共20分)
void GetMemory(char *p) 
{ 
   p = (char *)malloc(100); 
} 
void Test(void)  
{ 
   char *str = NULL; 
   GetMemory(str); 
   strcpy(str, "hello world"); 
   printf(str); 
} 
請問運行Test函數會有什麼樣的結果?
答:程序崩潰。因為GetMemory並不能傳遞動態內存,Test函數中的str一直都是NULL。strcpy(str, "hello world");將使程序崩潰。
char *GetMemory(void) 
{ 
char p[] = "hello world"; 
return p; 
} 
void Test(void) 
{ 
char *str = NULL; 
str = GetMemory();  
printf(str); 
} 
請問運行Test函數會有什麼樣的結果?
答:可能是亂碼。因為GetMemory返回的是指向“棧內存”的指針,該指針的地址不是NULL,但其原現的內容已經被清除,新內容不可知。
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函數會有什麼樣的結果?
答:(1)能夠輸出hello 
(2)內存洩漏
void Test(void) 
{ 
char *str = (char *) malloc(100); 
strcpy(str, “hello”); 
 free(str); 
 if(str != NULL) 
{ 
 strcpy(str, “world”); 
printf(str); 
} 
} 
請問運行Test函數會有什麼樣的結果?
答:篡改動態內存區的內容,後果難以預料,非常危險。因為free(str);之後,str成為野指針,if(str != NULL)語句不起作用。
五、編寫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(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; 
} 


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved