String的运算符重载

String的运算符重载

主要对String类的=、< 、>、==、+、>>运算符进行重载

示例

class String {

public:
    String(const char* p = nullptr)
    {
        if (p != nullptr)
        {
            _pstr = new char[strlen(p) + 1];
            strcpy(_pstr, p);
        }
        else
        {
            _pstr = new char[1];
            *_pstr = '\0';
        }
    }

    String(const String& rhs)
    {
        _pstr = new char[strlen(rhs._pstr) + 1];
        strcpy(_pstr, rhs._pstr);
    }

    String& operator=(const String& rhs)
    {
        if (this == &rhs)
            return *this;
        delete[]_pstr;
        _pstr = new char[strlen(rhs._pstr) + 1];
        strcpy(_pstr, rhs._pstr);
        return *this;
    }
    
    bool operator<(const String& rhs)
    {
        return strcmp(_pstr, rhs._pstr) < 0;
    }
    bool operator>(const String& rhs)
    {
        return strcmp(_pstr, rhs._pstr) > 0;
    }
    bool operator==(const String& rhs)
    {
        return strcmp(_pstr, rhs._pstr) == 0;
    }

    String operator+(const String& str)
    {
        char* pstr = new char[strlen(_pstr) + strlen(str._pstr) + 1];
        strcpy(pstr, _pstr);
        strcat(pstr, str._pstr);
        String tmp(pstr);
        delete[]pstr;

        return tmp;
    }
    char& operator[](int i)
    {
        return _pstr[i];
    }
    const char& operator[](int i)const
    {
        return _pstr[i];
    }
    friend ostream& operator <<(ostream& out, const String& str);
   
    ~String()
    {
        delete[]_pstr;
        _pstr = nullptr;
    }

private:
    char* _pstr;
};


ostream& operator <<(ostream& out, const String& str)
{
    out << str._pstr;    
    return out;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值