Core Java Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 269 Page Views: 

Why java does not support multiple inheritance?



Posted By: Avi Date: 4 November 2010 02:26:51 PM
 Answer:

Because the multiple inheritance causes the redundancy and diamond problem can’t be solved.


Posted By: avibtech


Date: 4 November 2010 02:26:51 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image wieOxT
Related Questions
Core Java : What is the List interface?

What is the List interface?

The List interface provides support for ordered collections of objects
Category: Core Java Date: 11/6/2010 4:13:55 PM
Core Java : What is the highest-level event class of the event-delegation model?

What is the highest-level event class of the event-delegation model?

The java.util.EventObject class is the highest-level class in the event-delegation class hierarchy.
Category: Core Java Date: 11/6/2010 2:35:53 PM
Core Java : Can the constructor be declared private?

Can the constructor be declared private?

Yes, in this case, you can’t create any instance for this class by using new.
Category: Core Java Date: 11/6/2010 2:15:46 PM
Core Java : What is the purpose of the System class?

What is the purpose of the System class?

The System class provides access to system resources.
Category: Core Java Date: 11/6/2010 2:03:52 PM
Core Java : What is diamond problem?

What is diamond problem?

The diamond problem is an ambiguity that can occur when a class multiply inherits from two classes t....
Category: Core Java Date: 11/6/2010 1:30:51 PM