InterviewSolution
| 1. |
Can You Access A Hidden Base Class Method In The Derived Class? |
|
Answer» YES, Hidden BASE class methods can be accessed from the derived class by CASTING the instance of the derived class to an instance of the base class as shown in the example below. Yes, Hidden base class methods can be accessed from the derived class by casting the instance of the derived class to an instance of the base class as shown in the example below. |
|