• switch可作用于char byte short int
  • switch可作用于char byte short int对应的包装类(Character 、Byte 、Short 、Integer )
  • switch中可以是字符串类型,String(jdk1.7之后才可以作用在string上)
  • switch中可以是枚举类型
  • switch不可作用于long double float boolean,包括他们的包装类
    参考文档:https://blog.csdn.net/u012110719/article/details/46316659