5

我想做很多案例陈述,每个陈述前面都有相同的警卫。我可以用不需要重复代码的方式来做吗?

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

3 回答 3

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")
  // ...
}
于 2012-08-17T14:05:08.087 回答
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 ))
于 2012-08-17T14:33:45.810 回答
4

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

variable match {
  case true => s match {
    case "a" | "b" | "c" => true
    case _ => false
  }
  case _ => false
}
于 2012-08-17T14:40:55.963 回答