首页
Java面试
PHP面试
经验笔记
在线工具
首页
在线工具
try-catch-finally 中,如果 catch 中 return 了,finally 还会执行吗?
finally异常是否会执行?
C语言 在线运行
C++ 在线运行
Java 在线运行
PHP 在线运行
Python 在线运行
Python3 在线运行
Nodejs 在线运行
Ruby 在线运行
Perl 在线运行
Go 在线运行
R语言 在线运行
Lua 在线运行
C# 在线运行
结果显示HTML
清空
点击运行
public class FinallyExample{ public static void main(String[] args) { FinallyExample.cal(); } public static int cal(){ try{ return 1 / 0; }catch (ArithmeticException e) { System.out.println("异常执行"); return 0; } finally { System.out.println("finally执行了吗"); } } }
运行结果
finally异常是否会执行?在线测试,这是一个简单方便的Java在线运行工具,支持在线编译、在线调试和在线结果的实时反馈。