当前位置: 技术问答>java相关
try的问题
来源: 互联网 发布时间:2015-04-05
本文导语: 请问,try可以嵌套吗? 多谢 | 可以 | Try有必要嵌套么?在下面catch不同的Exception就行了嘛。 | 当然有必要嵌套。 在某些可恢复错误情况或需要跳过该错误的...
请问,try可以嵌套吗?
多谢
多谢
|
可以
|
Try有必要嵌套么?在下面catch不同的Exception就行了嘛。
|
当然有必要嵌套。
在某些可恢复错误情况或需要跳过该错误的情况下就需要嵌套try;
在某些可恢复错误情况或需要跳过该错误的情况下就需要嵌套try;
|
try{
...
FileInputStream f = new FileInputStream("test.txt");
...
statement.execute("select * from test");
} catch(IOException ioex){
} catch(SQLException sqlex){
}
...
FileInputStream f = new FileInputStream("test.txt");
...
statement.execute("select * from test");
} catch(IOException ioex){
} catch(SQLException sqlex){
}