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

why java does not support multiple inheritance

Answer Posted / mythili pulluru

Java does not support a multiple inheritance because of following reason. for example class A
{
}
class B ExtendsA
{
//variables and methods
}
class c ExtendsA
{
//variables and methods
}
class B ExtendsA
{
//variables and methods
}
class D Extends B,C
{
//variables and methods
}
to compile this program it will give a compile time error because of class D felt in a confusion between B,C which class member to be a inherited(two class having same members) .to avoid this confusion java does not support multiple inheritance.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between the final method and abstract method?

1035


when to use ArrayList and when to use HashMap in webApplication.

4687


What is toarray method in java?

1087


What is object of class in java?

1118


what is the messsage u r going to get from an objectoriented programing?

2093


What is the use of arraylist class in java?

1067


How do you sort objects in java?

955


What is the difference between a field variable and a local variable?

1098


How to invoke external process in java.

1065


How to remove the trailing spaces from a string?

1256


What is the difference between variable declaration and variable initialization?

1023


What is void in java?

1067


Can It is possible to synchronize the constructor of a Java Class?

1107


Where is the singleton class used?

1022


How do you check if a number is a perfect square?

991