Java中throw和throws关键字之间有什么区别?

throw关键字用于显式引发异常。

示例

public class Test {
   public static void main(String[] args) {
      throw new NullPointerException();
   }
}

线程“ main”中的异常a6.dateAndTime.Test.main(Test.java:5)上的java.lang.NullPointerException

Java中的throws关键字用于推迟对已检查异常的处理。

public class Test {
   public static void main(String[] args)throws NullPointerException {
      throw new NullPointerException();
   }
}