當前位置:高考升學網 > 招聘筆試題 > 正文

創維最精華的筆試題和面試題答案(二)

更新:2023-09-15 22:01:26 高考升學網

  三.

  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 )Test函數中也未對malloc的內存進行釋放。(3)GetMemory避免了試題1的問題,傳入GetMemory的參數為字符串指針的指針,但是在GetMemory中執行申請內存及賦值語句

  p = (char ) malloc( num );

  后未判斷內存是否申請成功,應加上:if ( p == NULL ) {

  ...//進行申請內存失敗處理

  }

  四.

  void Test(void)

  {

  char str = (char ) malloc(100);

  strcpy(str, “hello”);

  free(str);

  if(str != NULL)

  {

  strcpy(str, “world”);

  printf(str);

  }

  }

  請問運行Test函數會有什么樣的結果?

  答:執行 char str = (char ) malloc(100); 后未進行內存是否申請成功的判斷;另外,在free(str)后未置str為空,導致可能變成一個“野”指針,應加上: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; // 若能加 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;

  } 更多精華的筆試題目分享:
金融常識筆試題100題
光大期貨筆試真題
財務會計類筆試題

最新圖文

2020年河北新聞網兩學一做

時間:2023-09-18 07:0:24

2020年河北新聞網兩學一做

時間:2023-09-15 11:0:59

兩學一做學習教育知

時間:2023-09-21 06:0:30

2020年開展兩學一做學習教

時間:2023-09-19 21:0:30
9999久久久国产精品,日韩在线一区二区三区欧美,日韩精品综合在线人妻,免费AAAAAA毛片看
亚洲精品视品在线 | 亚洲成年网在线观看黄 | 亚洲综合成人AV一区在线观看 | 中文字字幕在线中文字在线看 | 五月天丁香小婷婷 | 日本综合另类欧美日韩 |