首页 > 代码库 > 自定义实现赋值函数

自定义实现赋值函数

String & String::operator =(const String &other){            // 得分点:输入参数为const型
    if(this == &other)   //得分点:检查自赋值
    return *this;
    delete [] m_data;     //得分点:释放原有的内存资源
    int length = strlen( other.m_data );
    m_data = http://www.mamicode.com/new char[length+1];  //加分点:对m_data加NULL 判断
    strcpy( m_data, other.m_data );
    return *this;         //得分点:返回本对象的引用
}

自定义实现赋值函数