我正在自己编写字符串类。而且我不知道如何编写Сopy 构造函数。我有这样的代码。
class S {
private:
char *string;
int l;
public:
S::S(const S &s){
string = new char[l+1];
memcpy(string,s.string,l+1);
}
};
编译器没有给出任何错误,但 .exe 因未知错误而关闭。我尝试在 main() 函数中使用它。
S pop("Q6");
S str(pop);
所以我期待你的帮助。