常見的幾種如下:
nullpointerexception - 空指標引用異常
classcastexception - 型別強制轉換異常。
illegalargumentexception - 傳遞非法引數異常。
arithmeticexception - 算術運算異常
arraystoreexception - 向陣列中存放與宣告型別不相容物件異常
indexoutofbound***ception - 下標越界異常
negativearraysizeexception - 建立乙個大小為負數的陣列錯誤異常
numberformatexception - 數字格式異常
securityexception - 安全異常
unsupportedoperationexception - 不支援的操作異常
執行時期異常
runtimeexception和他的所有子類異常,都屬於執行時期異常。nullpointerexception,arrayindexoutofbound ception等都屬於執行時期異常.執行時期異常的特點 1 方法中丟擲執行時期異常,方法定義中無需throws宣告,呼叫者也無需處理此異常 2 ...
java執行時異常和非執行時異常的區別
建議使用執行時異常和編譯時異常叫法,便於區分和理解 非執行時異常是什麼異常?很懵逼 編譯時異常 程式沒有通過編譯器的編譯,必須處理掉這個異常程式才能正常執行,比如檔案路徑找不到異常,類找不到異常,io異常,必須用try catch或是throwable處理掉才能編譯通過 可以理解為一種特殊的語法錯誤...
常見的執行時異常
1.算術異常類 arithmeticexception 2.空指標異常類 nullpointerexception 3.類轉換異常 classcastexception 4.陣列負下標異常 negativearrayexception 5.陣列下標越界異常 arrayindexoutofbound ...