JAVA Day18

2021/6/12 1:22:22

本文主要是介绍JAVA Day18,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

JAVA Day18

异常

​ 异常指的是在程序运行过程中发生的异常事件,通常是由外部问题(如硬件错误、输入错误)所导致的。在Java等面向对象的编程语言中异常属于对象。

package exception;

public class demo01 {
    public static void main(String[] args) {
        int a=1;
        int b=0;
        try{//监控区域
            System.out.println(a / b);
        }//catch(想要捕获的异常类型)
        catch (ArithmeticException e1){//捕获异常,然后处理异常
            System.out.println("出现异常");
        }finally{//处理完异常后的善后工作
            System.out.println("finally");
        }
    }
}
  1. catch可以写多个,从小到大捕获。
  2. ctrl+alt+t快捷键。
//throw关键字,在方法中抛出异常
public void div(int a, int b) {
    if (b == 0) {
        throw new ArithmeticException();

    }
    System.out.println(a / b);
}



这篇关于JAVA Day18的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程