why java is not supporting multiple inheritence?
Answers were Sorted based on User's Feedback
Answer / ravikiran
Because we cann't extend more that one class with in a
class. But indirectly interfaces will provide the same
functionality by implementing more than one interfaces
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / mani.d [wipro]
Java doesn't support mutiple inheritance because
of 'Diamond problem'. The 'diamond problem' is an ambiguity
that can occur when a class multiple intehertis from two
classes that both descend from a common superclass.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / sunilkumar12317
we can't extends two class to another class
| Is This Answer Correct ? | 2 Yes | 1 No |
What are the pillars of java?
What is the importance of finally block in exception handling?
why java main method is given as static method?
What is e in java?
How many characters is 16 bytes?
what do you meant by Platform-Independent?
How to implement a multithreaded applet?
State the significance of public, private, protected class?
How does JAVA ClassLoader work?
What does business logic mean?
what is an object class?Explain its methods?
What is the difference between numeric and integer?