首页 > 代码库 > java7 语法糖 之 switch 语句中的string
java7 语法糖 之 switch 语句中的string
Jdk7新增的switch 语句中常量可以string类型,
例如:
@Test public void test_1(){ String string = "hello"; switch (string) { case "hello": System.out.println(string); break; default: throw new IllegalArgumentException("非法参数"); } }
语法糖的背后,其实用的对待string 类型时候,用的是hashCode() 方法转换的.
所以string 类型不能为 NULL.
例如:
@Test public void test_3(){ String string = null; expectedException.expect(NullPointerException.class); switch (string) { case "hello": System.out.println(string); break; default: throw new IllegalArgumentException("非法参数"); } }
会抛出异常
NullPointerException
java7 语法糖 之 switch 语句中的string
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。