What are the hidden features of Scala that every Scala developer should be aware of?
One hidden feature per answer, please.
|
What are the hidden features of Scala that every Scala developer should be aware of? One hidden feature per answer, please. | |||||||||||||
feedback
|
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
|
Okay, I had to add one more. Every
The second line looks confusing if you're not used to using pattern matching and extractors. Whenever you define a
The right hand expression creates a Most of the time your patterns use extractors that are members of singleton objects. For example, if you write a pattern like
then you're implicitly calling the extractor But you can also use class instances in patterns, and that is what's happening here. The val regex is an instance of | |||||||||||||
feedback
|
|
Structural type definitions - i.e. a type described by what methods it supports. For example:
Notice that the type of the parameter | |||||||||||||||||||
feedback
|
Type-Constructor Polymorphism (a.k.a. higher-kinded types)Without this feature you can, for example, express the idea of mapping a function over a list to return another list, or mapping a function over a tree to return another tree. But you can't express this idea generally without higher kinds. With higher kinds, you can capture the idea of any type that's parameterised with another type. A type constructor that takes one parameter is said to be of kind For example:
Now, if you have a | ||||
|
feedback
|
|
Extractors which allow you to replace messy
With this, which is much clearer in my opinion
I have to do a bit of legwork in the background...
But the legwork is worth it for the fact that it separates a piece of business logic into a sensible place. I can implement my
| |||||||||||
feedback
|
|
In scala 2.8 you can have tail-recursive methods by using the package scala.util.control.TailCalls (in fact it's trampolining). An example:
| |||||||
feedback
|
|
Manifests which are a sort of way at getting the type information at runtime, as if Scala had reified types. | |||||||
feedback
|
|
Case classes automatically mixin the Product trait, providing untyped, indexed access to the fields without any reflection:
This feature also provides a simplified way to alter the output of the
| ||||
|
feedback
|
|
It's not exactly hidden, but certainly a under advertised feature: scalac -Xprint. As a illustration of the use consider the following source:
Compiling this with scalac -Xprint:typer outputs:
Notice scalac -Xprint:<phase> will print the syntax tree after some compiler phase. To see the available phases use scalac -Xshow-phases. This is a great way to learn what is going on behind the scenes. Try with
using the typer phase to really feel how useful it is. | ||||
|
feedback
|
|
You can define your own control structures. It's really just functions and objects and some syntactic sugar, but they look and behave like the real thing. For example, the following code defines
Now you can do the following:
| |||||||
feedback
|
|
Example:
| ||||
|
feedback
|
|
Dunno if this is really hidden, but I find it quite nice. Typeconstructors that take 2 type parameters can be written in infix notation
| |||||||||
feedback
|
|
Scala 2.8 introduced default and named arguments, which made possible the addition of a new "copy" method that Scala adds to case classes. If you define this:
and you want to create a new Foo that's like an existing Foo, only with a different "n" value, then you can just say:
| |||||||||||
feedback
|
|
in scala 2.8 you can add @specialized to your generic classes/methods. This will create special versions of the class for primitive types (extending AnyVal) and save the cost of un-necessary boxing/unboxing :
You can select a subset of AnyVals :
| |||||
feedback
|
|
Extending the language. I always wanted to do something like this in Java (couldn't). But in Scala I can have:
and then write:
and get
| ||||
|
feedback
|
|
You can designate a call-by-name parameter (EDITED: this is different then a lazy parameter!) to a function and it will not be evaluated until used by the function (EDIT: in fact, it will be reevaluated every time it is used). See this faq for details
| |||||||||||||||
feedback
|
|
You can use Usage:
Being inline, it does not impose any additional overhead. | |||||||
feedback
|
Output:
| |||||
feedback
|
|
You can compose structural types with the 'with' keyword
| |||||
feedback
|
|
placeholder syntax for anonymous functions From The Scala Language Specification:
From Scala Language Changes:
Using this you could do something like:
| |||||||||||||||
feedback
|
|
Implicit definitions, particularly conversions. For example, assume a function which will format an input string to fit to a size, by replacing the middle of it with "...":
You can use that with any String, and, of course, use the toString method to convert anything. But you could also write it like this:
And then, you could pass classes of other types by doing this:
Now you can call that function passing a double:
The last argument is implicit, and is being passed automatically because of the implicit de declaration. Furthermore, "s" is being treated like a String inside sizeBoundedString because there is an implicit conversion from it to String. Implicits of this type are better defined for uncommon types to avoid unexpected conversions. You can also explictly pass a conversion, and it will still be implicitly used inside sizeBoundedString:
You can also have multiple implicit arguments, but then you must either pass all of them, or not pass any of them. There is also a shortcut syntax for implicit conversions:
This is used exactly the same way. Implicits can have any value. They can be used, for instance, to hide library information. Take the following example, for instance:
In this example, calling "f" in an Y object will send the log to the default daemon, and on an instance of X to the Daemon X daemon. But calling g on an instance of X will send the log to the explicitly given DefaultDaemon. While this simple example can be re-written with overload and private state, implicits do not require private state, and can be brought into context with imports. | ||||
|
feedback
|
|
Maybe not too hidden, but I think this is useful:
This will automatically generate a getter and setter for the field that matches bean convention. Further description at developerworks | |||||
feedback
|
|
Implicit arguments in closures. A function argument can be marked as implicit just as with methods. Within the scope of the body of the function the implicit parameter is visible and eligible for implicit resolution:
| ||||
|
feedback
|
|
Build infinite data structures with Scala's | ||||
|
feedback
|
|
Result types are dependent on implicit resolution. This can give you a form of multiple dispatch:
| ||||
feedback
|
Scala's equivalent of Java double brace initializer.Scala allows you to create an anonymous subclass with the body of the class (the constructor) containing statements to initialize the instance of that class. This pattern is very useful when building component-based user interfaces (for example Swing , Vaadin) as it allows to create UI components and declare their properties more concisely. See http://spot.colorado.edu/~reids/papers/how-scala-experience-improved-our-java-development-reid-2011.pdf for more information. Here is an example of creating a Vaadin button:
| ||||
|
feedback
|
Excluding members from
|
|
Now calling post with inappropriate length argument will cause an exception:
You can write multiple requirements or even add description to each:
Now exceptions are verbose:
One more example is here. BonusYou can perform an action every time requirement fails:
| |||||
feedback
|
|
Traits with
While my example is really not much more than a poor mans AOP, I used these Stackable Traits much to my liking to build Scala interpreter instances with predefined imports, custom bindings and classpathes. The Stackable Traits made it possible to create my factory along the lines of | ||||
|
feedback
|