Pure Virtual Functions Declared as Private in C++ Classes
by Alexander Ocher
How can a pure virtual function be private? Will the derived class be able to override it? Actually, it's possible for pure virtual functions to have any access modifier: private, protected, or public.
|