异常处理(Java 基础进阶)

 1、try-catch-finally使用

package com.example.test;

import java.util.Scanner;

public class ExceptionMain {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (true) {
            System.out.println("输入第一个数字:");
            int i = sc.nextInt();
            System.out.println("输入第二个数字:");
            int j = sc.nextInt();
            int x = 0;

            // 没有做异常的处理则会导致程序中断
            // System.out.println("最后的数:" + (i / j));

            // Exception处理的结构
            try {
                // 可能出现异常的代码块
                x = i / j;
            } catch (ArithmeticException e) {
                // 对异常进行处理(使程序不会因为异常而出现中断)
                // e.printStackTrace(); // 输出错误信息
                System.err.println("程序出现问题,做出默认处理");
                x = 0;
            } finally {
                // 最后都需要进行的步骤
                System.out.println("最后的数:" + x);
            }
        }

    }

}

2、throw,throws Exception使用

public class ExceptionMain {

    public static void main(String[] args) {
        // 检查异常,以防万一。
        try {
            // 可以try-catch处理异常也可以继续向上抛出异常
            getException();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }

        // 自定义异常,无病呻吟
        throw new BaseException("自定义异常");
    }

    public static void getException() throws FileNotFoundException {
        // 向上抛出异常,让上一层处理 throws FileNotFoundException
        FileInputStream fis = new FileInputStream("C://");
    }
}

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值