在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关键字,我们可以在程序的任何地方或条件下,根据需要主动抛出异常。