经典手写String函数 复制构造、拷贝构造等

参考自  https://blog.csdn.net/lplp90908/article/details/77876988 (他最后地方的拷贝构造函数写错了,*this这个地方,可以把这两行删除)
测试代码如下:
//21_0122 手写String 函数 拷贝构造 析构 构造
class String
{
public:
    String(const char* str = NULL); //普通的构造函数
    String(const String& other); //拷贝构造函数
    ~String();
    String& operator = (const String& other); //赋值操作符
    void getData();
    void setData(const char* p);

private:
    char* m_data;
};

String::String(const char* str)
{
    if(str == NULL)
    {
        m_data = new char[1];
        *m_data = '\0';
    }
    else
    {
        int len = strlen(str);
        m_data = new char[len+1];
        strcpy(m_data,str);
    }
    
}

String::~String()
{
    if(m_data != NULL)
    {
        delete[] m_data;
        m_data = NULL;
    }
}

String::String(const String& other) //思考一下为啥是引用 (明白了 这样就是效率高 这个传值也可以但是传引用快)
{
    int len = strlen(other.m_data);
    m_data = new char[len+1];
    strcpy(m_data,other.m_data);
}

String& String::operator=(const String& other)    //这种要把返回类型写在前面
{

    delete[] m_data;
    int len = strlen(other.m_data);
    m_data = new char[len+1];
    strcpy(m_data,other.m_data);
    return *this;
}

void String::getData()
{
    cout<<"This data is "<<m_data<<endl;
}

void String::setData(const char* p)
{
    if(m_data != NULL)
    {
        delete[] m_data;
    }
    int len = strlen(p);
    m_data = new char[len+1];
    strcpy(m_data,p);
    cout<<"after set this str is "<<m_data<<endl;
}


全部评论

相关推荐

ProMonkey2024:5个oc?厉害! 但是有一个小问题:谁问你了?😡我的意思是,谁在意?我告诉你,根本没人问你,在我们之中0人问了你,我把所有问你的人都请来 party 了,到场人数是0个人,誰问你了?WHO ASKED?谁问汝矣?誰があなたに聞きましたか?누가 물어봤어?我爬上了珠穆朗玛峰也没找到谁问你了,我刚刚潜入了世界上最大的射电望远镜也没开到那个问你的人的盒,在找到谁问你之前我连癌症的解药都发明了出来,我开了最大距离渲染也没找到谁问你了我活在这个被辐射蹂躏了多年的破碎世界的坟墓里目睹全球核战争把人类文明毁灭也没见到谁问你了(别的帖子偷来的,现学现卖😋)
点赞 评论 收藏
分享
10-09 09:39
门头沟学院 C++
HHHHaos:这也太虚了,工资就一半是真的
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务