throw拋出異常的方式比較直接:
if(age < 0){ throw new MyException("年龄不能为负数!"); }
來看一個例子:
package Test; public class Test2 { public static void main(String[] args) { String s = "abc"; if(s.equals("abc")) { throw new NumberFormatException(); } else { System.out.println(s); } } }
運行結果如下:
在實現時可以利用throw具體的拋出異常。
ppublic class Shoot { 创建类 static void pop() throws NegativeArraySizeException { //定义方法并抛出NegativeArraySizeException异常 int [] arr = new int[-3];//创建数组 } public static void main(String[] args) {//主方法 try { pop(); //调用pop()方法 } catch (NegativeArraySizeException e) { System.out.println("pop()方法抛出的异常");//输出异常信息 } } }
更多Java編程中使用throw關鍵字拋出異常的用法簡介相關文章請關注PHP中文網!