parataxisstructure.java
来自「我自己学习JAVA过程中用键盘敲的代码」· Java 代码 · 共 18 行
JAVA
18 行
package jerryhfb;
public class ParataxisStructure{
public static void main(String[] args){
try{
throw new Exception();
}catch(Exception e){
System.out.println("first Exception!");
}
finally{
System.out.println("finally clause");
}
try{
throw new Exception();
}catch(Exception e){
System.out.println("Second Exception!");
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?