在程序運(yùn)行的過程中,出現(xiàn)了意料之外的情況,就是異常。比如:輸入的格式不規(guī)范,查找的地址不存在,內(nèi)存溢出等等。
我們通過Exception
拋出異常,使我們程序的運(yùn)行不至于崩潰。
throw
一般在方法中使用public class Demo01 {public static void main(String[] args) {new Demo01().test(1, 0);
}
public void test(int a, int b){if (b==0){throw new ArithmeticException();
}
System.out.println(a/b);
}
}
throws
在方法聲明中使用public class Demo01 {public static void main(String[] args) throws ArithmeticException{new Demo01().test(1, 0);
}
public void test(int a, int b){System.out.println(a/b);
}
}
3.3 捕獲異常public class Demo01 {public static void main(String[] args) {int a = 0 ;
int b = 1 ;
try {//監(jiān)控區(qū)域
System.out.println(b/a);
}catch (ArithmeticException e){//捕獲異常
System.out.println("異常");
}finally {//忽略異常
System.out.println("F");
}
}
}
try
監(jiān)控區(qū)域是否有異常。catch()
捕獲異常,可以有多個(gè)catch()
捕獲不同的異常,但從上往下的異常級(jí)別應(yīng)該是從小到大的。finally
忽略異常。try
和catch()
必須一起出現(xiàn)你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級(jí)流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級(jí)服務(wù)器適合批量采購,新人活動(dòng)首月15元起,快前往官網(wǎng)查看詳情吧