如果要在一段程式碼中丟擲一個已檢查的異常,有兩個選擇:
try-catch
塊處理已檢查的異常。throws
子句指定。throws
子句的一般語法是:
<modifiers> <return type> <method name>(<params>) throws<List of Exceptions>{
}
關鍵字throws
用於指定throws
子句。throws
子句放在方法引數列表的右括號之後。throws
關鍵字後面是以逗號分隔異常型別的列表。
以下程式碼顯示如何在方法宣告中使用throws
子句
import java.io.IOException;
public class Main {
public static void readChar() throws IOException {
int input = System.in.read();
}
}
這裡是顯示如何使用它的程式碼。
在呼叫方法中捕捉丟擲的異常 -
import java.io.IOException;
public class Main {
public static void readChar() throws IOException {
int input = System.in.read();
System.out.println(input);
}
public static void main(String[] args) {
try {
readChar();
} catch (IOException e) {
System.out.println("Error occurred.");
}
}
}
上面的程式碼生成以下結果(輸入-1
回車,得到以下結果)。
-1
45
繼續 範例-2 直接丟擲異常。
import java.io.IOException;
public class Main {
public static void readChar() throws IOException {
int input = System.in.read();
System.out.println(input);
}
public static void main(String[] args) throws IOException {
readChar();
}
}
上面的程式碼生成以下結果(輸入-1
回車,得到以下結果)。
-1
45
可以使用throw
語句在程式碼中丟擲異常。throw
語法的語法是 -
throw <A throwable object reference>;
throw
是一個關鍵字,後面跟著一個可丟擲物件的參照。throwable
物件是一個類的範例,它是Throwable
類的子類,或Throwable
類本身。
以下是throw
語句的範例,它丟擲一個IOException
:
// Create an object of IOException
IOException e1 = new IOException("File not found");
// Throw the IOException
throw e1;
可以建立一個throwable
物件並將其放在一個語句中。
// Throw an IOException
throw new IOException("File not found");
如果丟擲一個被檢查的異常,必須使用try-catch
塊來處理它,或者在方法或建構函式宣告中使用throws
子句。
如果丟擲未經檢查的異常,上面的這些規則不適用。