宇轩宇轩! 发表于 2021-12-20 15:41:36

哪位大佬可以帮助一下小弟呢

编写一个类,实现根据驾龄计算保险金额的方法,方法返回值是double类型,方法参数是驾驶员的年龄,实现如下需求:
1.驾龄=年龄-16,驾龄小于4年,返回保险金额1000元,否则返回600元。
2.判断年龄,如果小于16,抛出Exception类型的异常。
3.计算保险金额的方法声明异常。
4.最后编写测试类测试,使用try-catch 捕获计算保险金额方法声明的异常。

412046761 发表于 2021-12-20 16:08:05

publicclass test {
       
        public Double getInsuredAmount(int age) throws Exception {
                if (age < 16)
                        throw new Exception("年龄小于16岁!");
                int drivingAge = age - 16;
                if (drivingAge < 4) {
                        return new Double(1000);
                } else {
                        return new Double(600);
                }

        }

        public static void main(String[] args) {
                try {
                        new test().getInsuredAmount(18);
                } catch (Exception e) {
                        e.printStackTrace();       
                }
        }
}

xhp001 发表于 2021-12-20 18:14:32

学习了

Gacy 发表于 2021-12-20 18:53:41

经典异常处理,又学到一招

宇轩宇轩! 发表于 2021-12-20 19:46:59

412046761 发表于 2021-12-20 16:08


大佬 怎么输出的时候 啥都没输出出来呢

412046761 发表于 2021-12-21 10:06:31

        public static void main(String[] args) {
                try {
                        Double money = new test().getInsuredAmount(18);
                        System.out.print("保险金额为:"+money);
                } catch (Exception e) {
                        e.printStackTrace();       
                }
        }
页: [1]
查看完整版本: 哪位大佬可以帮助一下小弟呢