C++: Pure Virtual Functions

  1. Pure virtual functions are REQUIRED to be implemented by a child class.
  2. Classes containing pure virtual functions cannot be instantiated.
  3. To use that class a deriving class must eventually implement all pure virtual functions.
  4. Similar to java abstract classes.

No comments: