up vote 2 down vote favorite
1
share [g+] share [fb]

Whats the other option we can use for multiple inheritance other than implementing interface

link|improve this question

Do you have a specific need for multiple inheritance? – Milhous Dec 22 '08 at 16:48
I second the question from Milhous. Some more details about what you're trying to accomplish would allow people to give you more thorough answers. – bradheintz Dec 22 '08 at 17:32
feedback

5 Answers

up vote 3 down vote accepted

A direct answer is to use inner classes. That gives you two (or more) objects that are intimately linked but cover independent base classes.

In general, prefer composition over inheritance. It's a common mistake to use inheritance everywhere. However, that leaves inflexible solutions that are difficult to follow.

link|improve this answer
feedback

Java does not have multiple inheritance.

From the Interfaces page of The Java Tutorials:

The Java programming language does not permit multiple inheritance ... , but interfaces provide an alternative.

Since multiple interfaces can be implemented by a class, that can be used as a substitution or alternative to having actual multiple inheritance in Java.

link|improve this answer
feedback

You'll probably have to use composition - i.e., having an instance of your "parent" class as a member of your "child" class. ("Parent" and "child" here indicate the relationship the two classes would have if you were using inheritance.) The containing ("child") class must then wrap the interface of the contained ("parent") class to expose any functionality of the contained class

One way to smooth the wrapping process is to have both the contained and containing class implement the same interface - the implementations of the methods of this interface in the containing class can then be straight calls to the same methods on the contained class.

link|improve this answer
feedback

You may want to check the following article: http://csharpfeeds.com/post/8497/Using_Postsharp_for_solving_the_inexisting_multi-inheritance_problem.aspx

Hope this helps.

link|improve this answer
feedback

At first, it's better to avoid multiple inheritance and use interfaces. And Java actually does not support multiple inheritance.

But you can use mixins to fake the multiple inheritance. There are some manuals about this:

Multiple Inheritance in Java

The Java Mixin Pattern, or Faking Multiple Inheritance

And if you want to make something composite, I advise to take a look at the Qi4j framework:

Composite Oriented Programming with Qi4j

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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