try(){}使用

Posted xguai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了try(){}使用相关的知识,希望对你有一定的参考价值。

InputStream is = null;

OutputStream os = null;
try {

} catch (IOException e) {

}finally{

try {

if(os!=null){

os.close();

}

if(is!=null){

is.close();
}
} catch (IOException e2) {

}

}

而现在你可以这样写:

 

 

try(

InputStream is = new FileInputStream("...");
OutputStream os = new FileOutputStream("...");

){
}catch (IOException e) {
}
 
 
 
 
try()里每个声明的变量类型都必须是Closeable的子类

以上是关于try(){}使用的主要内容,如果未能解决你的问题,请参考以下文章

try-catch的使用以及细节

《从零开始学Swift》学习笔记(Day 55)——使用try?和try!区别

Python - 在“try”之后使用“except”作为“try”的“else”部分

《从零開始学Swift》学习笔记(Day 55)——使用try?和try!差别

使用没有“catch”块的“try-finally”块

try语句的使用