2

このコードはなぜですか?

class X {
public:
    X& operator=(int p) {
        return *this;
    }
    X& operator+(int p) {
        return *this;
    }
};

class Y : public X { };

int main() {
    X x;
    Y y;
    x + 2;
    y + 3;
    x = 2;
    y = 3;
}

エラーを出します:

prog.cpp: In function ‘int main()’:
prog.cpp:14:9: error: no match for ‘operator=’ in ‘y = 3’
prog.cpp:14:9: note: candidates are:
prog.cpp:8:7: note: Y& Y::operator=(const Y&)
prog.cpp:8:7: note:   no known conversion for argument 1 from ‘int’ to ‘const Y&’
prog.cpp:8:7: note: Y& Y::operator=(Y&&)
prog.cpp:8:7: note:   no known conversion for argument 1 from ‘int’ to ‘Y&&’

なぜ演算子は継承されます+が、演算子は継承され=ないのですか?

4

2 に答える 2

9

クラスYには、基本クラスで宣言された演算子を隠す、暗黙的に宣言された代入演算子が含まれています。一般に、派生クラスで関数を宣言すると、基本クラスで宣言された同じ名前の関数が非表示になります。

で両方を利用できるようにしたい場合はY、using 宣言を使用します。

class Y : public X {
public:
    using X::operator=;
};
于 2013-03-01T13:38:45.197 に答える
0

宣言されていない場合、コンパイラが自動的に生成するメソッドを忘れています。割り当てはそれらの中にあります。

于 2013-03-01T13:37:46.050 に答える