Why doesn't a derived class use the base class operator= (assignment operator)?

后端 未结 1 2164
轮回少年
轮回少年 2021-02-19 10:00

Following is a simplified version of an actual problem. Rather than call Base::operator=(int), the code appears to generate a temporary Derived object

1条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-19 10:27

    This is a subtle interaction between a compiler-generated operator= method and member function hiding. Since the Derived class did not declare any operator= members, one was implicitly generated by the compiler: Derived& operator=(const Derived& source). This operator= hid the operator= in the base class so it couldn't be used. The compiler was still able to complete the assignment by creating a temporary object using the Derived(int) constructor and copy it with the implicitly generated assignment operator.

    Because the function doing the hiding was generated implicitly and wasn't part of the source, it was very hard to spot.

    This could have been discovered by using the explicit keyword on the int constructor - the compiler would have issued an error instead of generating the temporary object automatically. In the original code the implicit conversion is a well-used feature, so explicit wasn't used.

    The solution is fairly simple, the Derived class can explicitly pull in the definition from the Base class:

    using Base::operator=;
    

    http://ideone.com/6nWmx

    0 讨论(0)
提交回复
热议问题