2

可能的重复:
地图操作中的元组解包

可以说我有以下 Map[Int,Double]:

scala> map
res19: scala.collection.immutable.Map[Int,Double] = Map(1 -> 1.1, 2 -> 2.2)

我可以在其上运行以下 foldLeft:

scala> map.foldLeft("A")((initVal,x:(Int,Double)) => initVal + x._1)
res20: java.lang.String = A12

但是我找不到将元组的值分配给命名变量的方法:

scala> map.foldLeft("A")((init,x:(a:Int,b:Double)) => init + x.a)
<console>:1: error: ')' expected but ':' found.
   map.foldLeft("A")((init,x:(a:Int,b:Double)) => init + x.a)
                               ^

这甚至可以做到吗?

4

1 回答 1

7

你可以用例

map.foldLeft("A") {case (init, (a,b)) => init + a}
于 2012-10-16T23:33:17.913 回答