华清远见上海中心22071班 10.8作业

完成my_string 类的书写,主要完成运算符重载: +=运算符:operator+= 下标运算符:operator[] 加法运算符:operator+ 关系运算符:> 、 <、==

#include 

using namespace std;
class my_string
{
private:
    char *str;
    int len;
public:
    my_string()
    {
        len=15;
        str=new char[len];
        cout<<"无参构造"<

你可能感兴趣的:(c++,算法)