I just learned to my amazement that the following is legal C++
struct A {
void foo(int) const = 0; // pure virtual
// ...
};
void A::foo(int) const { /* ... */ }
What are sensible use cases for this? I.e. when would A::foo
ever be called and why is this the correct/best implementation? Are there any differences here between C++03 and C++11?
Okay, there was a previous question (which I didn't find) with the same intention. However that was pre C++11. So my last question remains valid.
If the function has a sensible default implementation, or a partial implementation of whatever is relevant to the base class, but you still want to force derived classes to override it, that's a good place to put it.
Also, as noted in the comments, you might want to force a class with no pure virtual functions to be abstract. You can do this by making the destructor pure virtual; but the destructor must have a body, whether or not it's pure virtual.
It can only be called non-virtually; for example:
The alternative would be to invent a new name for the partial/default implementation, in addition to an unimplemented pure virtual function.
No.