string类的构造和析构

Posted tomcao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了string类的构造和析构相关的知识,希望对你有一定的参考价值。

class String

{

public:

  String(const char * str);

  String(const String & other);

  ~String();

  String& operator=(const String & other);

private:

  char * m_data;

}

 

String::~String()

{

  delete [] m_data;

}

 

String::String(const char * str)

{

  if(str == NULL)

  {

    m_data = new char[1];

    m_data[0] = ‘\0‘;

  }

  else

  {

    int length = strlen(str);

    m_data = new char[length + 1];

    strcpy(m_data, str);

  }

}

 

String::String(const String & other)

{

  int length = strlen(other.m_data);

  m_data = new char[length + 1];

  strcpy(m_data, other.m_data);

}

 

String & String::operator=(const String & other)

{

  if(this == &other)

    return *this;  //如果地址相同时,直接返回

 

  delete [] m_data;  //释放原来的内存

  int length = strlen(other.m_data);

  m_data = new char[length + 1];

  strcpy(m_data, other.m_data);

 

  return *this;

}

以上是关于string类的构造和析构的主要内容,如果未能解决你的问题,请参考以下文章

构造函数和析构函数

php构造函数的PHP 5 构造函数和析构函数

C++string类

构造和析构的次序

绝不在构造函数和析构函数中调用虚函数

绝不在构造函数和析构函数中调用虚函数