私はこのようなクラスを定義しました
using namespace std;
class foo {
public:
typedef std::pair< int, int > index;
bool operator == ( const index &l, const index &r )
{
return (l.first == r.first && l.second == r.second);
}
void bar()
{
index i1;
i1.first = 10;
i1.second = 20;
index i2;
i2.first = 10;
i2.second = 200;
if (i1 == i2)
cout << "equal\n";
}
};
ただし、Windowsでこのエラーが発生します
error C2804: binary 'operator ==' has too many parameters
Linuxでのこのエラー
operator==(const std::pair<int, int>&, const std::pair<int, int>&)’ must take exactly one argument
このトピックのオーバーロード演算子==は「引数を1つだけ取る必要があります」と文句を言っていることがわかりました。これは、クラス内の静的関数と非静的関数の問題のようです。でも応募方法がわからないthis
たとえば、これは正しくありません
bool operator == ( const index &r )
{
return (this->first == r.first && this->second == r.second);
}
どうすれば修正できますか?