简体   繁体   中英

What is the use cases of Ignored Variable syntax in Scala?

According to this answer https://stackoverflow.com/a/8001065/1586965 we can do this in Scala:

val _ = 5

Now I understand the point of ignored parameters in lambda expressions, but I cannot really imagine examples where I would ever want to declare a variable that by definition I cannot reference. The only example I can think of is being lazy about naming implicit values, eg

implicit val _: MyNumeric = ...
...
class A[T : MyNumeric] {
...

Is this the only use case? Am I missing something?

If it is the only use case, shouldn't the compiler/IDE give a warning/hint when the val is not implicit as it is utterly pointless?

Clarification

By variable/value I mean a single one, not one that is part of an extraction declaration.

I don't think that this is a feature at all. In any case, it is not an "ignored variable". By which I mean that if val _ = 5 really introduced an unnamed value, then you could declare as many as you want in the same single scope. Not so:

scala> object Test {
     |   val _ = 5
     |   val _ = 7
     | }
<console>:9: error: _ is already defined as value _
         val _ = 7
         ^

From the error message it seems clear that what really happens is that the value is actually named _ (which I'd call a quirk of the compiler that should be fixed). We can verify this:

scala> object Test {
     |   val _ = 5
     |   def test() { println( `_` ) } // This compiles fine
     | }
defined object Test

scala> Test.test()
5

As for the possible use of preventing a value discarding warning (as shown in som-snytt's answer), I'much prefer to simply return an explicit Unit . This looks less convoluted and is even shorter:

def g(): Unit = { f(); () }

as opposed to:

def g(): Unit = { val _ = f() }    

It uses a value.

$ scala -Ywarn-value-discard
Welcome to Scala version 2.11.2 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_11).
Type in expressions to have them evaluated.
Type :help for more information.

scala> def f() = { println("I ran.") ; 42 }
f: ()Int

scala> def g(): Unit = { f() }
<console>:8: warning: discarded non-Unit value
       def g(): Unit = { f() }
                          ^
g: ()Unit

scala> def g(): Unit = { val _ = f() }
g: ()Unit

scala> g
I ran.

scala> 

To verify, it also doesn't warn under -Ywarn-unused .

The other use case (that I can think of) is related to extraction (and is called out under "Wildcard patterns" in the linked answer ):

val getCartesianPoint = () => (1, 2, 3)
// We don't care about the z axis, so we assign it to _
val (x, y, _) = getCartesianPoint()

val regex = "(.*?)|(.*?)|?.*".r
// Really, any unapply or unapplySeq example will do
val regex(_, secondValue) = "some|delimited|value|set"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM