java7新特性_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java7新特性

java7新特性

 2011/9/14 8:38:34  flysnowxf  http://flysnowxf.iteye.com  我要评论(0)
  • 摘要:参考:http://radar.oreilly.com/2011/09/java7-features.html语法增强:1.方块操作符原:Map<String,List<Trade>>trades=newTreeMap<String,List<Trade>>();现:Map<String,List<Trade>>trades=newTreeMap<>();2
  • 标签:新特性 Java
参考:http://radar.oreilly.com/2011/09/java7-features.html

语法增强:
1.方块caozuofu.html" target="_blank">操作符
原:
Map<String, List<Trade>> trades = new TreeMap<String, List<Trade>> ();

现:
Map<String, List<Trade>> trades = new TreeMap <> ();


2.switch终于可以使用String类型了
String status = t.getStatus();
switch (status) {
case NEW:
       break;
case EXECUTE:
       break;
case PENDING:
       break;
default:
       break;
}


3.自动关闭资源
不需要在finally写close()。
try (FileOutputStream fos = new FileOutputStream("movies.txt");
          DataOutputStream dos = new DataOutputStream(fos)) {
          dos.writeUTF("Java 7 Block Buster");
} catch (IOException e) {

}


4.更直观的数字显示
int thousand = 1_000;

等价于
int thousand = 1000;


5.增强的异常处理
一个catch可以抓多个异常。
public void newMultiCatch() {
     try {
            methodThatThrowsThreeExceptions();
     } catch (ExceptionOne | ExceptionTwo | ExceptionThree e) {
            // log and deal with all Exceptions
     }
}
发表评论
用户名: 匿名