次の方法で共有


コンパイラ エラー C2804

バイナリ 'operator operator' のパラメーターが多すぎます

オーバーロードされた二項演算子のメンバー関数が、複数のパラメーターを指定して宣言されています。 型が演算子の外側の型になっている二項演算子メンバー関数の 1 つ目のオペランド パラメーターは、暗黙的に指定されます。

次の例では、C2804 を生成し、その修正方法を示しています。

// C2804.cpp
// compile by using: cl /c /W4 C2804.cpp
class X {
public:
   X& operator+= (const X &left, const X &right);   // C2804
   X& operator+= (const X &right);   // OK - left operand implicitly *this
};

int main() {
   X x, y;
   x += y;   // equivalent to x.operator+=(y)
}

次の例では、C2804 を生成し、その修正方法を示しています。

// C2804_2.cpp
// compile with: /clr /c
ref struct Y {
   Y^ operator +(Y^ hY, int i);   // C2804
   static Y^ operator +(Y^ hY, int i);   // OK
   Y^ operator +(int i);   // OK
};