Execute code, after try...catch, regardless of the result:
try {
int[] myNumbers = {1, 2, 3};
System.out.println(myNumbers[10]);
} catch (Exception e) {
System.out.println("Something went wrong.");
} finally {
System.out.println("The 'try catch' is finished.");
}
The finally
keyword is used to execute code (used with exceptions - try..catch statements) no matter if there is an exception or not.
Read more about exceptions in our Java Try..Catch Tutorial.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!