欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Scala match

程序员文章站 2022-06-14 17:28:18
...
object Test {
  def main(args: Array[String]): Unit = {
    val code = 404
    val status = code match{
      case 200 => "成功"
      case 404 => "Not Found"
      case 500 => "Server Error"
      case _ => "其他原因"
    }
    println(status)
  }
}

结果:

Not Found