コンパイラ エラー C2831
'operator operator' には既定のパラメーターを持つことができません
既定のパラメーターを持つことができるのは、3 つの演算子のみです。
代入 =
左かっこ (
次の例では C2831 が生成されます。
// C2831.cpp
// compile with: /c
#define BINOP <=
class A {
public:
int i;
int operator BINOP(int x = 1) { // C2831
// try the following line instead
// int operator BINOP(int x) {
return i+x;
}
};