jdk7window64
jdk1.7的新特性主要内容:
在switch中使用String,在1.7以前只支持byte,short,int,char,enum。使用方式和使用byte,short那些一样,就不举例子了。
try-with-resources,之前使用的很多IO操作都需要手动去关闭流,现在使用这种方式,只要是实现了java.lang.AutoCloseable和java.io.Closeable的类就不需要再手动关闭了。
例子:try(OutputStreamout=newFileOutputStream("/home/a.txt")){}
如果是使用了多个需要关闭的流可以在括号中加入";"然后接在
用户评论