pr4766.java
来自「gcc3.2.1源代码」· Java 代码 · 共 26 行
JAVA
26 行
// 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 + =
减小字号Ctrl + -
显示快捷键?