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

Which servlet does the struts framework use?

928


How we can controlled duplicate form submission in struts?

889


How can we group related actions in one group in Struts?

920


What is apache struts used for?

873


What is struts and why it is used?

890


How action-mapping tag is used for request forwarding in struts configuration file?

910


How you will enable front-end validation based on the xml in validation.xml?

1013


What do you mean by struts.dev mode?

914


Explain the complete struts validator framework.

947


What are the differences between http direct and http indirect?

912


What is filter dispatcher in struts?

860


Do we need to pay the struts if being used in commercial purpose?

933


What is difference between lookupdispatchaction and dispatchaction?

1071


What is a custom tag?

883


What are the steps involved in creating a strut application?

907