异常处理方式以及创建数组的三种方式

8.9

package com.zhongruan.test;

import java.util.ArrayList;
import java.util.List;

public class TestException {
public static void main(String[] args) {

    //1.ArithmeticException
    //2.ArrayIndexOutOfBoundsException
    //3.Null![在这里插入图片描述](https://img-blog.csdnimg.cn/2019081209185385.jpg?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3pyemNzbA==,size_16,color_FFFFFF,t_70)PointerException
    /**
     try {
     int i = 2 / 0;
     System.out.println("111111111");
     }catch(ArithmeticException e){
     System.out.println("除数不能为0 ");
     }finally {
     System.out.println("22222222222");
     }
     **/
    div(1,0);
    //    Class.forName("11111");

}

static int div(int a,int b) throws ArithmeticException{
    int c=a/b;
    return c;
}

//异常处理方式:   1.jvm 处理   运行java程序的抽象计算机  异常名称  异常信息 异常出现的位置
//               2.自己处理   (1) try  catch  finally
//                             (2)  throws

//所有异常的父类都是Exception

//异常的类型
//1.运行时异常  extends RuntimeException
//2.编译异常   必须自己处理

}

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
举例子:
package com.zhongruan.test;

public class Tset123 {
public static void main(String[] args) throws AgeException {
Person person=new Person();
try{
person.setAge(-1);
}catch (AgeException e) {
e.printStackTrace();
}

    //int age = person.getAge();
    //System.out.println(age);
}

}
package com.zhongruan.test;

public class AgeException extends Exception{

public AgeException(String message){

    super(message);
}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值