can any body please explain me the concept of function overriding in C++????
This is a discussion on function overriding within the C++ Programming forums, part of the General Programming Boards category; can any body please explain me the concept of function overriding in C++????...
can any body please explain me the concept of function overriding in C++????
If a class inherits a function from a base class, and then defines a function with the same name, argument types, and return value, that class is said to be overriding the inherited function.
Right 98% of the time, and don't care about the other 3%.