Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What are the differences between method overloading and overriding. Can anyone explain it with an example.?

share|improve this question
13  
Have you done any research? If so, which part of the topic you are confused? – Nambari Sep 11 '12 at 16:52
possible duplicate of Java overloading and overriding – LittleBobbyTables Sep 11 '12 at 16:54
google.com/… – Jon Lin Sep 11 '12 at 16:54
Possible Duplicate: Java overloading and overriding – Siva Charan Sep 11 '12 at 16:54

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.

2 Answers

up vote 7 down vote accepted

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

share|improve this answer
3  
@Override is not required. It's a good practice, but not required. – GriffeyDog Sep 11 '12 at 19:07
1  
Sorry @GriffeyDog. You are right "@Override" is not compulsory.But to remember that you are overriding a method, it is a good practice..Thanks for reminding.. – Hisham Muneer Sep 11 '12 at 21:24

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 java.util.LinkedHashSet extends java.util.HashSet. The method add() is overridden in LinkedHashSet. If you have a variable that is of type HashSet, and you call its add() method, it will call the appropriate implementation of add(), based on whether it is a HashSet or a LinkedHashSet. This is called polymorphism.

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 System.out.println() is overloaded, so that you can pass ints as well as Strings, and it will call a different version of the method.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.