2021-07-11

2021/7/12 6:08:52

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

异常的处理:
try{异常代码} catch{异常的类型} finally{无论如何最终都会处理}

try{异常代码}catch(异常处理的类型 e){异常处理的类型}

throws 异常类型的抛出用在方法前面

package com.nt.exception;

public class Exception1 {

    public static void main(String[] args) {

// 如果异常会进行跳过,如果不异常会不进行处理

       try{
           System.out.println(10 / 2);
           System.out.println(10 / 0);
       }catch (ArithmeticException e){

           System.out.println("处理数学异常");
       }

        try{
            System.out.println(1);
            System.out.println(10 / 5);

            System.out.println(3);


        }catch(Exception e){

            System.out.println(4);

        }finally{

            System.out.println(5);

        }




        System.out.println(6);
    }

}



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


扫一扫关注最新编程教程