Scala模式匹配选项无有或没有绑定

时间:2012-12-19 10:49:10

标签: scala pattern-matching

我想进行以下模式匹配:

minReachableInt match {
   case None | Some(n) if n <= 0 =>
     println("All positive numbers can be reached")
   case _ =>
     println("Not all positive numbers can be reached")
}

当然,它不会编译,因为None中的n不匹配。但是,由于我在后续代码中不需要它,如何在不重复代码的情况下以您能想象的最美丽的方式实现我的结果?

1 个答案:

答案 0 :(得分:10)

使用模式匹配语法可以做些什么,所以不要试图用它来表达你的所有逻辑。

可以使用filter

表达此问题
minReachableInt filter (_ <= 0) match {
  case None =>
    println("All positive numbers can be reached")
  case _ =>
    println("Not all positive numbers can be reached")
}