我想进行以下模式匹配:
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不匹配。但是,由于我在后续代码中不需要它,如何在不重复代码的情况下以您能想象的最美丽的方式实现我的结果?
答案 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")
}