DEVFYI - Developer Resource - FYI

What is Overriding?

Java Interview Questions and Answers (part 3)


(Continued from previous question...)

489. What is Overriding?

When a class defines a method using the same name, return type, and arguments as a method in its superclass, the method in the class overrides the method in the superclass.
When the method is invoked for an object of the class, it is the new definition of the method that is called, and not the method definition from superclass. Methods may be overridden to be more public, not more private.

(Continued on next question...)

Other Interview Questions