Is it possible to extend multiple classes in Scala.
For example if I have ClassA and ClassB then can ClassC extend ClassA and ClassB (like in C++).
|
Is it possible to extend multiple classes in Scala. For example if I have ClassA and ClassB then can ClassC extend ClassA and ClassB (like in C++). |
||||
|
|
|
No, ClassC just can extend one of those, but you can mixin multiple traits. |
|||||
|
|
You can't extend multiple classes, but you can extend several traits. Unlike Java interfaces, traits can also include implementation (method definitions, data members, etc.). There is still a difference in that you can't instantiate a trait directly (similar to abstract classes in a way).
|
|||
|
|