Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Since I am new to java. I want to know if multiple ineritance is not supported in java then how a class extends another class alongwith the default superclass Object?

share|improve this question
No multiple inheritance means you can only have one father, but there might be many ancestors. – Binyamin Sharet Aug 3 '11 at 18:27

4 Answers

Because although multiple inheritance isn't allowed, one class can inherit from another which can inherit from another - and eventually the class at the top of that chain will inherit from object (it'll do that if you don't specify any specific class for it to inherit from.)

share|improve this answer
thanks a ton!!! – Anshul Aug 3 '11 at 18:27
@Anshul no problem! That's what we're here for. – berry120 Aug 3 '11 at 18:43

There are two similar sounding concepts related to inheritance Multiple Inheritance and Multi-Level Inheritance.

Multiple Inheritance is not allowed in java. This stops a class from inheriting multiple classes. For example we can't declare a class as:

Class C extends A, C

But as multilevel inheritance is allowed, extending of class B, which extends class A, by class C is allowed. So class hierarchies like

Class B extends A

and

Class C extends B

is allowed.

share|improve this answer
thnx i gt my answer... – Anshul Aug 3 '11 at 18:41
+1 - For, yeah I mean, if you wanna get all technical about it... ;) jeje.. not but really, good, clear answer. – AJC Aug 3 '11 at 18:58

Although this is already answered, here is a diferent perspective. Try to think of it in human terms. You can't have 2 biological fathers, but you inherit the traits from your father, your grandfather, great grandfather and so on... In the same way, when you extend a class, that class becomes the parent class and you'll inherit traits from every parent class up the tree.

;)

share|improve this answer

"Multiple inheritance" is different than what you describe - it refers to a single class extending more than one class, such as

public class MultipleClass extends ClassA, ClassB

What you have described is just a hierarchy of inheritance.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.