I've taken a look at the list of surveys taken on scala-lang.org and noticed a curious question: "Can you name all the uses of “_”?". Can you? If yes, please do so here :-) Explanatory examples are appreciated.
|
|
The ones I can think of are Existential types
Higher kinded type parameters
Ignored variables
Ignored parameters
Wildcard patterns
Wildcard imports
Hiding imports
Joining letters to punctuation
Assignment operators
Placeholder syntax
Partially applied functions
There may be others I have forgotten! |
||||
|
|
From (my entry) in the FAQ, which I certainly do not guarantee to be complete (I added two entries just two days ago):
This is also part of this question. |
|||||||
|
|
An excellent explanation of the uses of the underscore is Scala _ [underscore] magic. Examples:
In Scala,
In Scala, a getter and setter will be implicitly defined for all non-private vars in a object. The getter name is same as the variable name and
Use: val t = new Test t.age = 5 println(t.age) If you try to assign a function to a new variable, the function will be invoked and the result will be assigned to the variable. This confusion occurs due to the optional braces for method invocation. We should use _ after the function name to assign it to another variable.
|
|||||
|
|
Besides the usages that JAiro mentioned, I like this one:
If someone needs all connection properties, he can do:
If you need just a host and a port, you can do:
|
|||