Scala multiple assignment to existing variable

前端 未结 5 689
独厮守ぢ
独厮守ぢ 2021-01-11 17:02

I can do something like

def f(): Tuple2[String, Long] = ...
val (a, b) = f()

What about if the variables are already existing? I\'m runnin

相关标签:
5条回答
  • 2021-01-11 17:33

    It works for new values because that syntax is treated as a pattern matching, just like case statements. So, as Alex said, you cannot do it.

    0 讨论(0)
  • 2021-01-11 17:33

    If you run always "the same sets of data" over filters etc, it is a symptom that they belong somehow together, so you should consider to group them using either a tuple or a dedicated class (usually a case class in such cases).

    0 讨论(0)
  • 2021-01-11 17:41

    As Alex pointed out, the short answer is no. What's going on with your code is this: when a and b are already bound variables in the current scope, (a, b) means "take the values of a and b and construct a tuple from them."

    Therefore,

    (a, b) = ...
    

    is equivalent to

    (new Tuple2(a, b)) = ...
    

    which is obviously not what you want (besides being nonsensical).

    The syntax you want (ability to assign to multiple variables at once) simply doesn't exist. You can't even assign the same value to multiple preexisting variables at once (the usual syntax "a = b = ..." that's found in many other languages doesn't work in Scala.) I don't think it's an accident that vals get preferential treatment over vars; they're almost always a better idea.

    It sounds like all of this is taking place inside of a loop of some kind, and doing repeated assignments. This is not very idiomatic Scala. I would recommend that you try to eliminate the usage of vars in your program and do things in a more functional way, using the likes of map, flatMap, filter, foldLeft, etc.

    0 讨论(0)
  • 2021-01-11 17:50

    The workaround I found is this:

    // declare as var, not val
    var x = (1,"hello")  
    // x: (Int, String) = (1,hello)
    
    // to access first element
    x._1
    // res0: Int = 1
    
    // second element
    x._2
    // res1: String = hello
    
    // now I can re-assign x to something else
    x = (2, "world")
    // x: (Int, String) = (2,world)
    
    // I can only re-assign into x as long the types match
    // the following will fail
    
    x = (3.14, "Hmm Pie")
    <console>:8: error: type mismatch;
     found   : Double(3.14)
     required: Int
           x = (3.14, "Hmm Pie")
    
    0 讨论(0)
  • 2021-01-11 17:54

    Short answer: No.

    0 讨论(0)
提交回复
热议问题