Special means that they give you functionality which is impossible to get otherwise, so they treat by compiler in special way. Examples: 'DelayedInit' - convert all init code to main methods, 'Dynamic' - proxy of all methods etc
|
At present, the only special traits I'm aware of are Anything inheriting from these traits also gets special treatment by the compiler, as with It's worth noting that any trait could potentially be used as a marker by some library, framework, or compiler plugin to "give you functionality which is impossible to get otherwise". These two are the only traits that are specially recognized by the default compiler though. As well as marker traits, there are some annotations that get treated specially, the |
|||
|
|
|
There is also It is a
|
|||
|
|
Appis only "magical" for performance reasons regarding the optimization of constructors on the JVM. You can easily make your own executable trait by giving it amain(args: Array[String])method: see for example the (deprecated)Applicationtrait. – Luigi Plinge Aug 31 '11 at 8:38