Access Rights
In this lesson, we'll learn about access rights of inheritance.
We'll cover the following...
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
, orprivate
from its base class. - For