博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java7 语法糖 之 switch 声明string
阅读量:6107 次
发布时间:2019-06-21

本文共 624 字,大约阅读时间需要 2 分钟。

  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

版权声明:本文博主原创文章,博客,未经同意不得转载[http://blog.csdn.net/doctor_who2004]。

你可能感兴趣的文章
Android扩展 - 拍照篇(Camera)
查看>>
JAVA数组的定义及用法
查看>>
充分利用HTML标签元素 – 简单的xtyle前端框架
查看>>
设计模式(十一):FACADE外观模式 -- 结构型模式
查看>>
iOS xcodebuile 自动编译打包ipa
查看>>
程序员眼中的 SQL Server-执行计划教会我如何创建索引?
查看>>
【BZOJ】1624: [Usaco2008 Open] Clear And Present Danger 寻宝之路(floyd)
查看>>
cmake总结
查看>>
数据加密插件
查看>>
linux后台运行程序
查看>>
win7 vs2012/2013 编译boost 1.55
查看>>
IIS7如何显示详细错误信息
查看>>
ViewPager切换动画PageTransformer使用
查看>>
coco2d-x 基于视口的地图设计
查看>>
C++文件读写详解(ofstream,ifstream,fstream)
查看>>
Android打包常见错误之Export aborted because fatal lint errors were found
查看>>
Tar打包、压缩与解压缩到指定目录的方法
查看>>
新手如何学习 jQuery?
查看>>
配置spring上下文
查看>>
Python异步IO --- 轻松管理10k+并发连接
查看>>