Access Rights

In this lesson, we'll learn about access rights of inheritance.

Scope of access rights #

The access rights of the inheritance determine which functionalities of the base class can be used in the derived class.

  • A class can be derived public, protected, or private from its base class.
  • For
...