首页 > 代码库 > Scala match 变量

Scala match 变量

昨天写 Scala 的时候,使用 match(相当于 switch)时,运行结果很奇怪。
var i: Int = 0
while (i < items.length) {
  i % width match {
    case offset => println("offset: " + items(i))
    case logSize => println("logSize: " + items(i))
    case lag => println("lag: " + items(i))
    case _ =>
  }
  i = i + 1
}

后看到:http://stackoverflow.com/questions/7078022/why-does-pattern-matching-in-scala-not-work-with-variables

在 Scala 中,match 的必须是 stable identifier,不明所以,以后研究。

改成如下即可:
var i: Int = 0
while (i < items.length) {
  i % width match {
    case `offset` => println("offset: " + items(i))
    case `logSize` => println("logSize: " + items(i))
    case `lag` => println("lag: " + items(i))
    case _ =>
  }
  i = i + 1
}