您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)異常在java中的應(yīng)用,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
一、什么是異常
異常就是程序運(yùn)行過(guò)程中所出現(xiàn)的不正?,F(xiàn)象。
try
:把可能發(fā)生異常的代碼包起來(lái),當(dāng)發(fā)生異常時(shí),將異常拋出
catch
:捕獲異常并處理
finally
:不管是否發(fā)生異常,都會(huì)執(zhí)行
throw
:手動(dòng)引發(fā)一個(gè)異常
throws
:定義任何被調(diào)用方法的異常
二、異常出現(xiàn)的原因
用戶輸入錯(cuò)誤;
代碼的錯(cuò)誤;
環(huán)境的因素;
異常機(jī)制保證了程序的健壯性!
三、異常的分類
NullPointerException
空引用異常
IndexOutOfBoundException
下標(biāo)越界異常
Error與編``譯環(huán)境有關(guān),它是Java運(yùn)行時(shí)的內(nèi)部錯(cuò)誤以及資源耗盡錯(cuò)誤。很難修復(fù),不期望用戶能修復(fù)。
四、獲取異常信息
程序發(fā)生異常的時(shí)候,程序就直接從try執(zhí)行到catch語(yǔ)句塊,不再繼續(xù)執(zhí)行`在這里。
public class text3 { public static void main(String[] args) { System.out.println("main開始執(zhí)行"); text3 a=new text3(); a.text(); System.out.println("main執(zhí)行結(jié)束"); } public void text() { int a; try { a=2/0; System.out.println(a); }catch(ArithmeticException e){ System.out.println("程序發(fā)生了異常"); } } }
異常捕獲之后程序才不會(huì)斷
public class text3 { public static void main(String[] args) { System.out.println("main開始執(zhí)行"); text3 a=new text3(); a.text(); System.out.println("main執(zhí)行結(jié)束"); } public void text() { int a; //try { a=2/0; System.out.println(a); //}catch(ArithmeticException e){ //System.out.println("程序發(fā)生了異常"); //} } }
控制臺(tái)結(jié)果:
異常自己不處理但是得聲明一下。
異常聲明:指一個(gè)方法不處理它所產(chǎn)生的異常,而是調(diào)用層次向上傳遞,誰(shuí)調(diào)用的這個(gè)方法誰(shuí)來(lái)處理。
五、手動(dòng)拋出異常
throw exception; 參數(shù)exception表示要拋出的異常對(duì)象,該對(duì)象是throwable類的子類,而且只能夠是一個(gè)。
public void text1() throws ArithmeticException{ } public static void main(String[] args) { Text t=new Text(); try { t.text(); } catch (Exception e) { // TODO Auto-generated catch block System.out.println(e.getMessage()); } } public void text() throws Exception { //手動(dòng)拋出異常 throw new Exception("這是手動(dòng)拋出來(lái)的"); } }
六、try catch finally的嵌套使用
public class Textthrow { public static void main(String[] args) { double a=Math.random(); try { if(a>0.5) { System.out.println(a+"程序不報(bào)錯(cuò)"); } else { throw new Exception(); } }catch(Exception e) { System.out.println("這是外層捕獲的對(duì)象"+e); try { a=1/0; }catch(ArithmeticException e1) { System.out.println("這是內(nèi)層捕獲的對(duì)象"+e1); }finally { System.out.println("這是內(nèi)層的finally塊"); } }finally { System.out.println("這是外層的finally塊 "); } } }
七、異常鏈
定義:兩個(gè)或者多個(gè)不同的異常出現(xiàn)在同一個(gè)程序中,并且會(huì)發(fā)生嵌套拋出,我們稱之為異常鏈。
public class ExceptionChainText { public static void main(String[] args) { Calculator c=new Calculator(); try { c.chufa(1, 0); }catch(NumberCalculateExcetption e) { e.printStackTrace(); System.out.println("錯(cuò)誤原因"+e); } } } class Calculator{ public int chufa(int i,int j) throws NumberCalculateExcetption { if(j==0) { NumberCalculateExcetption e = new NumberCalculateExcetption ("計(jì)算錯(cuò)誤"); NegativeNumberException e1= new NegativeNumberException("除數(shù)不能為0"); e.initCause(e1);//由e1引起的異常 throw e; } return 0; } } class NegativeNumberException extends Exception{ public NegativeNumberException(String msg) { super(msg); } } class NumberCalculateExcetption extends Exception{ public NumberCalculateExcetption(String msg) { super(msg); } }
關(guān)于異常在java中的應(yīng)用就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。