vote up 1 vote down star
1

Is the multiple inheritance in Java and Perl the same?

flag

3 Answers

vote up 23 vote down check

There is no multiple inheritance in Java, but single inheritance + multiple interface implementation, while Perl does have multiple inheritance.

link|flag
3  
+1 for saying Java doesn't allow multiple inheritance. Not even through interfaces, because thats not we call inheritance, arguably. – Adeel Ansari Jun 24 at 10:06
Good way to remember that: bad puns stackoverflow.com/questions/17512/… – streetpc Jul 10 at 10:19
vote up 7 vote down

Don't know about Perl, but Java only allows multiple inheritance of interface. Only single-inheritance is allowed for implementation.

link|flag
vote up 7 vote down

No. Perl doesn't have interfaces, and Java only allows multiple inheritance through interfaces.

link|flag
2  
Actually the base perl object system hasn't got interfaces, but through additional extensions like Moose you can get roles which apparently are even better :) – wazoox Jun 24 at 11:50
That's a good point, I was only considering the core language, without CPAN modules. – James Thompson Jun 24 at 16:03

Your Answer

Get an OpenID
or
never shown

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