源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

Java编程中使用throw关键字抛出异常的用法简介

  • 时间:2020-07-28 17:09 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:Java编程中使用throw关键字抛出异常的用法简介
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); 
     } 
   }
 
 }
运行结果如下: [img]http://files.jb51.net/file_images/article/201511/20151112173833696.png?20151012173842[/img] java中可以对一个方法在定义时就进行异常的声明,而后在实现时可以利用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()方法抛出的异常");//输出异常信息
}
}
}

  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部