Can someone please explain scala traits? I can't seem to find a good explanation anywhere.
Also, what are the advantages of traits over extending an abstract class?
|
|
|
The short answer is that you can use multiple traits -- they are "stackable". Also, traits cannot have constructor parameters. Here's how traits are stacked. Notice that the ordering of the traits are important. They will call eachother from right to left.
|
|||||||||
|
|
This site gives a good example of trait usage. One big advantage of traits is that you can extend multiple traits but only one abstract class. Traits solve many of the problems with multiple inheritance but allow code reuse. If you know ruby, traits are similar to mix-ins |
|||
|
|
|
This is the best example I've seen Scala in practice: Composing Traits – Lego style: http://gleichmann.wordpress.com/2009/10/21/scala-in-practice-composing-traits-lego-style/
|
||||
|
|
|
Traits are useful for mixing functionality into a class. Take a look at http://scalatest.org/. Note how you can mix in various domain-specific languages (DSL) into a test class. look at the quick start guide to look at some of the DSL's supported by Scalatest ( http://scalatest.org/quick_start ) |
|||
|
|