私は自分で文字列クラスを書いています。そして、私はそのようなコードを持っています。オーバーロードしたいだけですoperator=
。これは私の実際のコードであり、コードの最後の部分でエラーが発生します。
#include <iostream>
#include <string.h>
#include <stdlib.h>
using namespace std;
class S {
public:
S();
~S() { delete []string;}
S &operator =(const S &s);
private:
char *string;
int l;
};
S::S()
{
l = 0;
string = new char[1];
string[0]='\0';
}
S &operator=(const S &s)
{
if (this != &s)
{
delete []string;
string = new char[s.l+1];
memcpy(string,s.string,s.l+1);
return *this;
}
return *this;
}
しかし、残念ながら、エラー「S&operator =(const S&)」は非静的メンバー関数である必要があります。