What are the differences between method overloading and overriding. Can anyone explain it with an example.?
|
closed as not a real question by Nambari, Graham Borland, Noel M, dystroy, LittleBobbyTables Sep 11 '12 at 16:54
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Definition - Method overloading deals with the notion of having two or more methods(functions) in the same class with the same name but different arguments. While Method overriding means having two methods with the same arguments, but different implementation. One of them would exist in the Parent class (Base Class) while another will be in the derived class(Child Class).@Override annotation is required for this. Check this : Click here for a detailed example |
|||||||||
|
|
Method overriding is when a child class redefines the same method as a parent class, with the same parameters. For example, the standard Java class Method overloading is defining several methods in the same class, that accept different numbers and types of parameters. In this case, the actual method called is decided at compile-time, based on the number and types of arguments. For instance, the method |
|||
|
|