adspace
Should the member functions which are made public in the base class be hidden?
Answer Posted / Neetu Kuma
In C++ inheritance, member functions declared as public in the base class can be accessed by derived classes and their objects. Therefore, they should not be intentionally hidden unless there is a specific reason to do so, such as encapsulation or overriding.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers