Java does not support multiple inheritance.
how interface helps in the same?
Answer Posted / naseer
In java through interface we can acheive multiple inheritence.but not class. class can extend only one class
suppose if class A has one method m1() and class B has method m1() there are two diffrent implementaion whenver we can extends two class here some confusions ..A class has diffeent implementaion and B class has diffrent implementation.
suppose interface A has one method m1() and inteface B has one method m1() whenever interface extend two interfaces common method will be there we can override any method beacuase here implementaion is common for both methods
in classse implementaion is diffreent for both methods
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How to perform selection sort in java?
Define inheritance?
Define how does a try statement determine which catch clause should be used to handle an exception?
What are the skills required for core java?
How does linkedhashmap work in java?
Explain covariant method overriding in java.
What is factor r?
What is meant by distributed application? Why are we using that in our application?
Explain super keyword in java.
Tell some latest versions in JAVA related areas?
What is the lifetime and scope of a variable?
Explain the protected field modifier?
What is a local class in java?
What is nan inf?
What is an infinite loop?