?? throwexception1.java
字號:
public class ThrowException1{
int x=4;
public static void main(String arg[]){
ThrowException1 c=new ThrowException1();
try{
if (c.x==4)
throw new Exception();}catch(Exception e){
System.out.println(e.getMessage());
System.out.println(e.toString());
}
System.out.println("ok");
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -