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();
   }
}

更新时间: 20-2-2020

333 次浏览

开启你的 职业生涯

通过完成课程获取认证

开始
广告