1.要求两数相乘等于100报错。2.要求两数相除等于2报错

1.定义一个MulException类继承Exception类,要求两数相乘等于100报错,在主类中定义一个方法, 在方法中抛出此异常,在主方法观察结果。

2.定义一个DivException类继承RuntimeException类,要求两数相除等于2报错, 在主类中定义一个方法,在方法中抛出此异常,在主方法观察结果。



class MulException extends  Exception{
    public MulException(String msg){
        super(msg);
    }
}

class DivException extends  RuntimeException{
    public DivException(String msg){
        super(msg);
    }
}

public class Test{
    public static void main(String[] args) throws Exception {
        MulTest();
        DivTest();
    }
    public static void MulTest() {
        try {
            int x = 10;
            int y = 10;
            if (x * y == 100) {
                throw new MulException("两数相乘不等于100");
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    public static void DivTest() {
        try {
            int x = 4;
            int y = 2;
            if (x / y == 2) {
                throw new DivException("两数相除不等于2");
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

运行结果:
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_41420688/article/details/83899279