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 tracing?

1047


Explain option explicit?

962


What are the assembly entry points?

966


Why should you use delegate?

870


Can you please explain the difference between int and int32?

997


What are the parts of the visual basic control?

893


Allowed program to auto-correct the database when loading a presentation.

2198


What are the advantages of migrating to vb.net?

927


What are the advantages of vb.net and c#?

1069


Explain about globalization?

818


What are nested classes?

892


Write a VB.Net console program to check whether a number is perfect or not.

7700


Is vb.net a programming language?

925


Name and explain some of the exclusive features which are present in vb?

915


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

984