string是C++封装好了的类库,已经重载了你想要的这些方法,不需要重新实现啦。如果你要做练习,请将参数换成const char*,并实现自己的string类class MyString{ char *data; MyString & operator+(MyString &another);}