switch 中可以使用字符串当判断条件

Posted 小潘》

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了switch 中可以使用字符串当判断条件相关的知识,希望对你有一定的参考价值。

switch语句能否作用在byte上,能否作用在long上,能否作用在String?

   在switchexpr1)中,expr1只能是一个整数表达式或者枚举常量(更大字体),整数表达式可以是int基本类型或Integer包装类型,由于,byte,short,char都可以隐含转换为int,所以,这些类型以及这些类型的包装类型也是可以的。显然,longString类型都不符合switch的语法规定(版本原因),并且不能被隐式转换成int类型,所以,它们不能作用于swtich语句中。

Java7之前,switch只能支持 byte、short、char、int或者其对应的封装类以及Enum类型。在Java7中已经支持String类型。

//枚举类型,把要判断的条件先定义成enum

 enum CompassPoint {
      case North
      case South
      case East
      case West
}

//使用 Switch 语句来匹配枚举值

directionToHead = .South
switch directionToHead {
  case .North:
      println("Lots of planets have a north")
  case .South:
      println("Watch out for penguins")
  case .East:
      println("Where the sun rises")
  case .West:
      println("Where the skies are blue")
}
// 输出"Watch out for penguins”

以上是关于switch 中可以使用字符串当判断条件的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript Switch

流程控制语句使用总结

js中的if判断语句和switch条件分支语句

Java Script 流程控制语句(if判断switch选择和循环)

if判断和switch选择

2016年2月23日----Javascript逻辑判断语句