共计 397 个字符,预计需要花费 1 分钟才能阅读完成。
在 Java 中,可以通过使用 throw 关键字来主动抛出异常。下面是一个简单的示例:
public class Main {public static void main(String[] args) {try {int age = -1;
if (age < 0) {throw new IllegalArgumentException("Age cannot be negative");
}
} catch (IllegalArgumentException e) {System.out.println("Exception caught: " + e.getMessage());
}
}
}
在上面的示例中,我们在 age 小于 0 的情况下,主动抛出一个 IllegalArgumentException 异常,然后在 try-catch 块中捕获并处理该异常。通过 throw 关键字,我们可以在程序的任何地方或条件下,根据需要主动抛出异常。
丸趣 TV 网 – 提供最优质的资源集合!
正文完