Scala模式匹配默认警卫

时间:2012-08-17 13:56:32

标签: scala pattern-matching

我想在每个案件前面做很多同一个案件的案件陈述。我可以这样做,不需要代码重复吗?

"something" match {
   case "a" if(variable) => println("a")
   case "b" if(variable) => println("b")
   // ...
 }

3 个答案:

答案 0 :(得分:8)

您可以创建一个提取器:

class If {
  def unapply(s: Any) = if (variable) Some(s) else None
}
object If extends If
"something" match {
  case If("a") => println("a")
  case If("b") => println("b")
  // ...
}

答案 1 :(得分:7)

似乎OR(管道)运算符的优先级高于保护,因此以下工作原理:

def test(s: String, v: Boolean) = s match {
   case "a" | "b" if v => true
   case _ => false
}

assert(!test("a", false))
assert( test("a", true ))
assert(!test("b", false))
assert( test("b", true ))

答案 2 :(得分:4)

0 __的答案很好。或者,您可以先匹配“变量”:

variable match {
  case true => s match {
    case "a" | "b" | "c" => true
    case _ => false
  }
  case _ => false
}