区别于普通 try catch , Java 1.7 增加了 try - with - catch
此时可以不用写 close 语句, 程序会自动关闭
try(定义流对象){
// 可能出现异常的代码
}catch(异常类型 异常变量名){
// 异常的处理逻辑
}
public static void main(String[] args) {
try (InputStreamReader reader = new InputStreamReader(System.in)) {
char[] cbuf = new char[20];
int len;
if ((len = reader.read(cbuf)) != -1) {
String str = new String(cbuf, 0, len);
System.out.println(str);
}
} catch (IOException e) {
e.printStackTrace();
}
}