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?
|
Suppose i have two methods in a class say
then what is it like. Overloading or overriding? |
|||||||
|
|
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. |
|||
|
|
|
This is overloading. Overriding is used in inheritance when you give different implementation to the same method signature. |
|||||
|
|
That would be method overloading, as it meets the conditions for method overloading:
Also overriding can happen only when inheritance is involved. Since both of your methods are in the same class it cannot be overriding. |
||||
|
|
|
That's overloading. In brief: |
|||
|
|