码迷,mamicode.com
首页 > 编程语言 > 详细

java7 语法糖 之 switch 语句中的string

时间:2014-10-29 21:37:27      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:switch 语句中的string   java7   jdk7   

  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

标签:switch 语句中的string   java7   jdk7   

原文地址:http://blog.csdn.net/doctor_who2004/article/details/40592633

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!