Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

explain method overridding method overloding with examples?

Answer Posted / esha prasad

Overriding:: It's not any two classes will do to study this
scnario, because overriding will come in a scenario
involving parent child relationship.



public class Parent{

public void sum(int a, int b)
{
System.out.println(a+b);
}
class Child extends Parent
{


public void sum(int a, int b)
{
System.out.println("Sum of the integers = "+a+b);
}
}

}

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


}

}

Is This Answer Correct ?    8 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What do struts do?

1008


Mark the differences between html tags and strut specific html tags.

1034


What is the difference between filters and interceptors ?

1245


What is the use of namespace in action mapping in Struts2?

1102


How the exceptions are handled in struts?

1063


Can we have multiple struts config files ?

1013


What is validate() and reset() functions?

1086


How to use dispatchaction?

1093


How can you create your custom interceptor in struts 2?

993


How many struts config file can be created in struts?

946


How can we work with error tags?

1046


What is the use of jsonvalidation in struts?

1046


What helpers in the form of jsp pages are provided in struts framework?

1027


What configuration files are used in struts?

1006


Why use spring, if you are already using struts?

1056