Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Suppose i have two methods in a class say

public void eat(int i,String s) and

public void eat(String s, int i)

then what is it like. Overloading or overriding?

share|improve this question
4  
Just read the first sentence of each article en.wikipedia.org/wiki/Method_overloading en.wikipedia.org/wiki/Method_overriding – Nikita Rybak Oct 3 '10 at 6:09
It is overloading and overriding if your method put in a child class that provide different implmentation. – qrtt1 Oct 3 '10 at 6:15

4 Answers

up vote 4 down vote accepted

Overloading means two methods or more with the same name but with different parameters just like your example.While Overriding you implement a method from an interface or abstract class so the method in the super class has an implementation and in the subclass has a different one, Still they have the same method name and parameters.

share|improve this answer

This is overloading. Overriding is used in inheritance when you give different implementation to the same method signature.

share|improve this answer
2  
no need to sign your answer – nanda Oct 3 '10 at 6:22

That would be method overloading, as it meets the conditions for method overloading:

  • Must have different argument lists
  • May have different return types, if argument lists are also different
  • May have different access modifiers
  • May throw different exceptions

Also overriding can happen only when inheritance is involved. Since both of your methods are in the same class it cannot be overriding.

share|improve this answer

That's overloading. In brief:
   Overriding = replacing
   Overloading = give more options

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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