Java throw 关键字
示例
如果 **age** 小于 18 则抛出异常(打印 “拒绝访问”)。 如果 age 为 18 或更大,则打印 “访问允许”。
public class Main {
static void checkAge(int age) {
if (age < 18) {
throw new ArithmeticException("Access denied - You must be at least 18 years old.");
}
else {
System.out.println("Access granted - You are old enough!");
}
}
public static void main(String[] args) {
checkAge(15); // Set age to 15 (which is below 18...)
}
}
定义和使用
The throw
关键字用于创建自定义错误。
The throw
语句与 异常类型 一起使用。 在 Java 中可以使用许多异常类型:ArithmeticException
, ClassNotFoundException
, ArrayIndexOutOfBoundsException
, SecurityException
等等。
异常类型通常与自定义 方法 一起使用,如上面的示例所示。
The throw
与 throws
的区别
throw | throws |
---|---|
用于对方法抛出异常 | 用于指示方法可能抛出的异常类型 |
不能抛出多个异常 | 可以声明多个异常 |
语法
|
语法
|
相关页面
在我们的 Java Try..Catch 教程 中了解更多关于异常的信息。