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?

link|improve this question

feedback

2 Answers

up vote 29 down vote accepted

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.

class Ball {
  def properties(): List[String] = List()
  override def toString() = "It's a" +
    properties.mkString(" ", ", ", " ") +
    "ball"
}

trait Red extends Ball {
  override def properties() = super.properties ::: List("red")
}

trait Shiny extends Ball {
  override def properties() = super.properties ::: List("shiny")
}

object Balls {
  def main(args: Array[String]) {
    val myBall = new Ball with Shiny with Red
    println(myBall) // It's a shiny, red ball
  }
}
link|improve this answer
2  
Here's the traits page from the Scala tour, it pretty much explains what traits are: scala-lang.org/node/126 – André Laszlo Aug 4 '09 at 21:51
1  
The lack of constructor parameters is almost made up using type parameters in traits. – Jus12 Oct 19 '11 at 14:00
feedback

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

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.