What is multiple inheritance & can we implement it in java?
Answer Posted / arnab
When a particular class has properties of more than one
class it is called multiple inheritance.
Since c++ like implementation of multiple inheritance programs
is difficult, and adds complexity to the language, java
provides an alternative approach known as interface to
support the concept of multiple inheritance.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Can you instantiate the math class?
which class is the wait() method defined in? : Java thread
What is ordered map in java?
How many ways can we create singleton class?
Why is java multithreaded?
How can we create objects if we make the constructor private ?
What are the advantages of unicode?
Which sorting algorithm is best in java?
What is difference between array and vector?
What are the limitations of procedural programming approach?
How to connect to a remote database using Applet?
What is consumer interface?
What does next mean in java?
What is the char data type?
Which way a developer should use for creating thread, i.e. Sub classing thread or implementing runnable.