一级毛片免费不卡在线视频,国产日批视频免费在线观看,菠萝菠萝蜜在线视频免费视频,欧美日韩亚洲无线码在线观看,久久精品这里精品,国产成人综合手机在线播放,色噜噜狠狠狠综合曰曰曰,琪琪视频

編寫類String 的構(gòu)造函數(shù)、析構(gòu)函數(shù)和賦值函數(shù)

時間:2024-09-14 14:08:33 資料大全 我要投稿
  • 相關(guān)推薦

編寫類String 的構(gòu)造函數(shù)、析構(gòu)函數(shù)和賦值函數(shù)

  已知類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ù),

編寫類String 的構(gòu)造函數(shù)、析構(gòu)函數(shù)和賦值函數(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::operate =(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;

  }

【編寫類String 的構(gòu)造函數(shù)、析構(gòu)函數(shù)和賦值函數(shù)】相關(guān)文章:

《函數(shù)的概念》說課稿08-15

初中函數(shù)教學(xué)反思范文07-25

初中數(shù)學(xué)《反比例函數(shù)》說課稿(精選5篇)08-21

初中數(shù)學(xué)說課稿《一次函數(shù)的圖像》07-26

數(shù)學(xué)一次函數(shù)知識點(diǎn)總結(jié)08-06

高中數(shù)學(xué)《幾類不同增長的函數(shù)模型》說課稿07-06

高中數(shù)學(xué)教學(xué)-三角函數(shù)的性質(zhì)及應(yīng)用09-09

高中數(shù)學(xué)教學(xué)-三角函數(shù)的最值及綜合應(yīng)用08-15

JAVA賦值運(yùn)算10-16

簡析面試禮儀技巧和注意事項(xiàng)09-25