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 / srividhya.y

java does not support multiple inheritance because of ambiguity 0r confusion problem.but multiple inheritance can be achieved through the concept called interfaces.
A class can implement one or more interfaces.
class A extends B extends C
{
//Not possible
}
class A extends B implements C
{
// Possible
}
from interface to class we are inheriting use the keyword
implements.

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Does string isempty check for null?

1086


What is array and arraylist in java?

1168


What does microservices mean?

1002


What is the arraylist in java?

1113


What is the difference between an if statement and a switch statement?

1217


Explain different types of wrapper classes in java?

1073


What is an immutable object?

1171


Can a lock be acquired on a class in java programming?

1044


What was java originally called?

1002


How do you write a scanner class in java?

1064


What is an example of a constant variable?

1147


Can we write class inside a class in java?

1030


Explain different ways of creating a thread. Which one would you prefer and why?

1101


How many times finalize method will be invoked? Who invokes finalize() method in java?

1071


Explain the differences between static and dynamic variables?

1198