Answers

Question and Answer:

  Home  C++ Inheritance

⟩ Explain about overriding?

Defining a function in the derived class with same name as in the parent class is called overriding. In C++, the base class member can be overridden by the derived class function with the same signature as the base class function. Method overriding is used to provide different implementations of a function so that a more specific behavior can be realized.

 225 views

More Questions for you: