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
What is the difference between empty default namespace and root namespace?
Give an example where struts tiles may be used?
What are the reasons for an error message not being displayed while developing struts application?
Explain the necessity of empty tag?
Are actions thread safe?
Which library is provided by struts for form elements like check boxes, text boxes etc?
How we can configured action mapping in struts?
Why do we need mapdispatchtoprops?
What are the conditions for actionform to work correctly?
What is lookupdispatchaction?
What is the purpose of @validations annotation?
In how many ways duplicate form submission can occurs?
How can we upload files in Struts2 application?
What is filter dispatcher in struts?
Why are frameworks used?