7

嵌套匹配似乎不起作用,这是一个奇怪的限制。

行为示例如下:

Some(Some(1),2) match {
 | case Some(Some(a),b) => a
 | case e => e
 | }
<console>:9: error: wrong number of arguments for <none>: (x: (Some[Int], Int))Some[(Some[Int], Int)]
   case Some(Some(a),b) => a
            ^
<console>:9: error: not found: value a
   case Some(Some(a),b) => a
                           ^

这有效:

Some(Some(1),2) match {
case Some(a) => a match {
case (Some(a),b) => "yay"
case e => "nay"
}
}

现在,我只是一个笨蛋还是有更好的方法来实现这一点?

4

1 回答 1

12

什么是一些(一些(1),2)?(Option (of Int) 和 Int) 的元组选项?这有效:

scala> Some ((Some (1), 2)) match {
     | case Some ((Some (a), b)) => a
     | case e => e }           
res13: Any = 1

注意元组周围的额外括号 - 太少是一个常见的错误。

于 2011-05-28T22:12:48.653 回答