When reading Item 27 Minimize casting in Effective C++, it says do not try to use static_cast
to cast *this
in derived class to base class. It because static_cast<Base>(*this)
will create a temporary object of Base class. I tried an example as follows, however, it always output 10 using different compilers such as clang 3.8 and gcc 4.9, 5.3.
Am I wrong?
#include <iostream>
class A {
public:
int a;
virtual void foo() {std::cout << a << std::endl;}
};
class B : public A {
public:
int b;
void foo () { static_cast<A>(*this).foo();}
};
int main () {
B b;
b.a = 10;
b.foo();
return 0;
}
The question is why static_cast
will create a temporary object.
First of all you don't have to cast Derived -> Base because it happens automatically. And yes, static_cast will create an object of type which you casting to. In your case to enable polymorphism you can use either references or pointers: