Scala语言保护(if表达式)
示例
案例语句可以与if表达式结合使用,以在模式匹配时提供额外的逻辑。
def checkSign(x: Int): String = {
x match {
case a if a < 0 => s"$a is a negative number"
case b if b > 0 => s"$b is a positive number"
case c => s"$c neither positive nor negative"
}
}确保您的警卫人员不会产生非详尽的匹配非常重要(编译器通常不会捕获此匹配):
def f(x: Option[Int]) = x match {
case Some(i) if i % 2 == 0 => doSomething(i)
case None => doSomethingIfNone
}这将引发一个MatchError奇数。您必须考虑所有情况,或使用通配符匹配情况:
def f(x: Option[Int]) = x match {
case Some(i) if i % 2 == 0 => doSomething(i)
case _ => doSomethingIfNoneOrOdd
}
热门推荐
10 酒吧深情祝福语大全简短
11 六一婚礼文案祝福语简短
12 女儿结婚账单祝福语简短
13 虎年新年专属祝福语简短
14 送女士祝福语长辈简短
15 中午生日家庭祝福语简短
16 下雨开工吉祥祝福语简短
17 整形机构开业祝福语简短
18 姐姐女儿结婚祝福语简短