java中的finally怎么使用?
发布网友
发布时间:2022-04-28 14:53
我来回答
共5个回答
热心网友
时间:2022-06-19 07:16
try {
语句块:可能抛出异常的语句
} catch (Exception e) {
捕获异常
}
finally{
无论是抛出了异常还是没有抛出异常都要执行的语句块
}
热心网友
时间:2022-06-19 07:17
一般都是用在Exception中。跟try、catch一起使用。
热心网友
时间:2022-06-19 07:17
FileInputStream fin=null;
try{
.............
}catch(IOException ex){
}finally{
if(fin!=null){
try{fin.close();}catch(IOException e){}
}
}
热心网友
时间:2022-06-19 07:18
try{
}catch(Exception e){
}finally{
}
热心网友
时间:2022-06-19 07:18
请看详细解释
http://developer.51cto.com/art/201111/302586.htm