In Scala, what is the advantage of using an abstract class instead of a trait (apart from performance)? At first glance it seems like abstract classes can be replaced by traits in most cases.
|
I can think of two differences
|
|||
|
|
|
For whatever it is worth, Odersky et al's Programming in Scala recommends that, when you doubt, you use traits. You can always change them into abstract classes later on if needed. |
|||
|
|
|
There's a section in Programming in Scala called "To trait, or not to trait?" which addresses this question. Since the 1st ed is available online, I'm hoping it's ok to quote the whole thing here. (Any serious Scala programmer should buy the book):
As @Mushtaq Ahmed mentioned, a trait cannot have any parameters passed to the primary constructor of a class. Another difference is the treatment of
See the rest of Chapter 12 for more details. |
|||
|
|
|
When extending an abstract class, this shows that the subclass is of a similar kind. This is not neccessarily the case when using traits, I think. |
|||
|
Abstract classes can contain behaviour - They can parameterized with constructor args (which traits can't) and represent a working entity. Traits instead just represent a single feature, an interface of one functionality. |
|||||||||||
|
|
In Programming Scala the authors say that abstract classes make a classical object oriented "is-a" relationship while traits are a scala-way of composition. |
|||
|
|