Java 中 throw 和 throws 关键字有什么区别?
throw 关键字用于显式引发异常。
示例
public class Test { public static void main(String[] args) { throw new NullPointerException(); } }
线程“main”java.lang.NullPointerException 中的异常 at a6.dateAndTime.Test.main(Test.java:5)
Java 中的 throws 关键字用于推迟处理受检异常。
public class Test { public static void main(String[] args)throws NullPointerException { throw new NullPointerException(); } }
广告