Java does not support multiple inheritance.
how interface helps in the same?
Answer Posted / sushila sonare
in java only one super class should be there. If we are
saying multiple inheritance there is more then one super
class and at time of object creation super(){super calling
statement} statement is invoked and control goes to super
class but if we are saying multiple inheritance then there
is more than one super class so JVM getting confused,
control goes to where. So avoiding this confusion only
single inheritance are allowed in JAVA you can use this
concepts in multiple levels.
In interface compiler is not keeping default constructor, so
there is no constructor chain. Thats why we can have
multiple interface at same level.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What do the thread?class methods run() and start() do?
Explain the inheritance?
Can we pass null as argument in java?
What is a instance variable?
What does snprintf return?
Can list contain null in java?
What is the base class of all exception classes?
What is bufferedwriter?
What is the purpose of javac exe?
What are the approaches that you will follow for making a program very efficient?
Is java owned by oracle?
What are the practical benefits, if any, of importing a specific class rather than an entire package (e.g. Import java.net.* Versus import java.net.socket)?
What is a null check?
What is the difference between final, finally and finalize()?
Which is bigger float or double?