explain method overridding method overloding with examples?

Answer Posted / zurreyab ahmad

Ovloding:in overloding case same method name and different
parameter and different return type
public class overlo {

public void add(int a, int b)
{
System.out.println(a+b);
}
public float add(float c, float d)
{
return c+d;
}
}

class main1
{
public static void main(String[] args) {


}

}
Overriding:: in overriding case the same method name and
same parameter and same return type and in overriding case
at least two class must have



public class overri {

public void add(int a, int b)
{
System.out.println(a+b);
}
class overri1
{


public void add(int a, int b)
{
System.out.println(a+b);
}
}}

class main1
{
public static void main(String[] args) {


}

}

Is This Answer Correct ?    7 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between empty default namespace and root namespace?

769


Give an example where struts tiles may be used?

736


What are the reasons for an error message not being displayed while developing struts application?

713


Explain the necessity of empty tag?

760


Are actions thread safe?

714


Which library is provided by struts for form elements like check boxes, text boxes etc?

679


How we can configured action mapping in struts?

735


Why do we need mapdispatchtoprops?

643


What are the conditions for actionform to work correctly?

702


What is lookupdispatchaction?

745


What is the purpose of @validations annotation?

728


In how many ways duplicate form submission can occurs?

749


How can we upload files in Struts2 application?

779


What is filter dispatcher in struts?

690


Why are frameworks used?

734