string 實現

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

{
    delete [] m_data;
    // 由於m_data 是內部數據類型,也可以寫成 delete m_data;
}

// String 的普通構造函數
String::String(const char *str)

{
    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)

{
    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)
{
    // (1) 檢查自賦值 

    if(this == &other)
    return *this;
    // (2) 釋放原有的內存資源 

    delete [] m_data;
    // (3)分配新的內存資源,並複製內容 

    int length = strlen(other.m_data);
    m_data = new char[length+1]; // 若能加 NULL 判斷則更好
    strcpy(m_data, other.m_data);
    // (4)返回本對象的引用

    return *this;
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章