1.陣列角標越界的異常:arrayindexoutofbound***ception
2.空指標異常:nullpointerexception
注意:一旦程式出現異常,未處理,程式將中止執行。
package day07;
/*陣列中的常見異常:
1.陣列角標越界的異常:arrayindexoutofbound***ception
2.空指標異常:nullpointerexception
注意:一旦程式出現異常,未處理,程式將中止執行。
*/public class arrayexceptiontest
;for(
int i =
0; i <= arr.length; i++
)system.out.
println
(arr[-2
]);//2.空指標異常:nullpointerexception
int[
] arr1=new int
; arr1=null;
system.out.
println
(arr1[0]
);int[
] arr2=new int[4
];system.out.
println
(arr2[0]
[0])
;string[
] arr3=new string;
arr3[0]
=null;
system.out.
println
(arr3[0]
.tostring()
);}}
陣列常見的異常
1.陣列下標越界的異常 inti new int 10 i 0 90 i 10 100 陣列是從0開始算起是第一位的,沒有i 10 這屬於第十一位 inti new int 5 for int m 0 m i.length m 在for迴圈中,條件變數那裡的m應該是小於i而不是小於等於 2.空指標的...
Java中的異常體系,常見的異常
常見的異常 arithmeticexception 算數運算異常 arrayindexoutofbound ception 陣列越界異常 classcastexception 型別轉換異常 nullpointerexception 空指標異常 numberformatexception 資料格式異常...
異常 常見的異常
在程式設計中異常處理會被頻繁的使用,所以有必要知道一些常見的異常。nullpointexception 空指標異常,屬於執行時異常。簡單來說就是呼叫了未經初始化的物件或者不存在的物件,或者是訪問或修改null物件的屬性或方法。classnotfoundexception 找不到類異常。出現這種情況一...