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...

What is the Difference between Overriding and overloading?

Answer Posted / kundan kumar

OverLoading : All the method will share the same name but
it differes based on the parameter, type of parameter and
number of parameter

OVERRIDING:-
it just in inheritance and the overriding
method must hold the same name and the same signatures .
the change maybe just in behavior .


The Dog class in the following example is the subclass and
the Animal class is the superclass. The Cat class overrides
eat() method inherited from Animal class.

public class Animal {

public void eat() {
System.out.println("Eat for Animal");
}
}

public class Dog extends Animal {

public void eat() {
System.out.println("Eat for Dog");
}
}

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the significance of delegates. Where should they be used? What are the situations where we require them?

980


What is code access security?

1189


What does assert() method do In VB.NET

980


what is the need for dynamic controls in vb.net? i would like to know for what purpose should we create the controls dynamically? please give the answer in simple words.

2374


What is jagged array in vb.net?

1082


What is a literal control?

1007


List the types of authentication?

908


List the two main parts of .net?

1066


what is interface and when it is used?

2265


What is the differnce between managed code and unmanaged code?

981


Explain about rapid application development tool?

954


Explain how does the xmlserializer work?

1023


Write a program to find all text files in a logical drive and return the count of the number of files?

2704


Explain the components of common language runtime.

1117


Can you please explain the difference between system.string and system.stringbuilder classes?

1040