码迷,mamicode.com
首页 > 其他好文 > 详细

使用throw和throws 引发异常

时间:2019-11-01 18:23:56      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:ann   strong   运行时异常   new   err   size   程序   soft   system   

1.throw 用在方法内抛出异常,通常可以自行使用try catch进行异常处理

如果不自行处理的话,需要在方法上使用throws抛出异常

 1   public static void testAge(){
 2         System.out.println("请输入年龄:");
 3         Scanner input =new Scanner(System.in);
 4         int age=input.nextInt();
 5         try {
 6             if (age<18||age>80){
 7                 throw new Exception("18岁一下,80岁以上的住客必须陪同");
 8             }else {
 9                 System.out.println("欢迎光临本酒店");
10             }
11         }catch (Exception e){
12             log.error("年龄异常");
13         }
14     }


调用方法处理一场

public static void main(String[] args) {
try {
testAge();
} catch (Exception e) {
e.printStackTrace();
log.error("年龄异常");
}
}
public static void testAge() throws Exception{
System.out.println("请输入年龄:");
Scanner input =new Scanner(System.in);
int age=input.nextInt();
if (age<18||age>80){
throw new Exception("18岁一下,80岁以上的住客必须陪同");
}else {
System.out.println("欢迎光临本酒店");
}
}


抛出运行时异常
抛出运行时异场,不需要处理,但是程序或中断运行
public static void testAge(){
System.out.println("请输入年龄:");
Scanner input =new Scanner(System.in);1
int age=input.nextInt();
if (age<18||age>80){
throw new RuntimeException("18岁一下,80岁以上的住客必须陪同");
}else {
System.out.println("欢迎光临本酒店");
}
System.out.println("iver");
}
 

 

使用throw和throws 引发异常

标签:ann   strong   运行时异常   new   err   size   程序   soft   system   

原文地址:https://www.cnblogs.com/duan2/p/11778471.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!