我想从“string.h”(STL)创建一个像“string”这样的类。我的课是:
class MyChar
{
char *Buff;
public:
/* Some constructors and other helpful methods */
};
我的问题是,我不知道如何执行以下操作:
#include <iostream>
int main()
{
MyChar str;
str = "My new string";
cout << str;
}
我不想提“str.Buff”或“str.getBuffer()”之类的……只是“str”。就像“字符串”类一样。