📄 pr4766.java
字号:
// Test that bytecode generation works even when `finally' clause// doesn't return normally.public class PR4766{ public static int myfunction() { try { System.out.println ("hi"); } catch( Exception e ) { e.printStackTrace(); } finally { return 0; } } public static void main (String[] args) { }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -