There are three interfaces A,B & C. A extends B, B extends C,
and C extends A.Is it multiple Inheritance? please anybody
help me.....
Answers were Sorted based on User's Feedback
Answer / sudheer
this is called cyclic inheritance....
if u compile A.java then only you will get an error message saying that "cyclic inheritance involving on A"...
so it is not possible...
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / sadikhasan palsaniya
There is Cyclic inheritance which is not possible in java.
interface A{}
interface B extends A{}
interface C extends A{}
interface D extends B,C{}
It's call Multiple inheritance.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / madhu
in java there is no multiple inheritance.so it is called as multi level inheritance.it comes under that.so i hope it is not multiple inheritance.there is only one inheritance single level inheritance.
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / pratima
This is not multiple inheritance ,this is multilevel inheritance.
But if you have three interface suppose A,B,C
then you can implement like wise and achieve multiple inheritance.
A extends B,C
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mahesh
No it is Not Multiple inheritance .It is Hirearchy inheritance
| Is This Answer Correct ? | 1 Yes | 4 No |
What are the methods used to implement for the key object in the hash map?
What is difference between string and stringbuffer?
What is set and get methods in java?
What is the default value of byte datatype in java?
What is finally block?
What is the purpose of a transient variable?
Can you tell me range of byte?
Why do we need hashmap in java?
What is constructor and its types?
What is the difference between throw and throws? What is the similarity between try and throw?
What are Font and FontMetrics classes?
Explain exception chaining in java?