在最终块中抛出异常
有没有一种优雅的方法来处理在块中抛出的异常?finally
例如:
try {
// Use the resource.
}
catch( Exception ex ) {
// Problem with the resource.
}
finally {
try{
resource.close();
}
catch( Exception ex ) {
// Could not close the resource?
}
}
你如何避免/在块中?try
catch
finally