开发者社区> 问答> 正文

重载方法异常处理

重载方法异常处理

展开
收起
珍宝珠 2020-02-13 17:32:40 1558 0
1 条回答
写回答
取消 提交回答
  • public class Main {
        double method(int i) throws Exception{
            return i/0;
        }
        boolean method(boolean b) {
            return !b;
        }
        static double method(int x, double y) throws Exception  {
            return x + y ;
        }
        static double method(double x, double y) {
            return x + y - 3;
        }   
        public static void main(String[] args) {
            Main mn = new Main();
            try{
                System.out.println(method(10, 20.0));
                System.out.println(method(10.0, 20));
                System.out.println(method(10.0, 20.0));
                System.out.println(mn.method(10));
            }
            catch (Exception ex){
                System.out.println("exception occoure: "+ ex);
            }
        }
    }
    
    

    以上代码运行输出结果为:

    30.0
    27.0
    27.0
    exception occoure: java.lang.ArithmeticException: / by zero
    
    2020-02-13 17:32:57
    赞同 展开评论 打赏
问答地址:
问答排行榜
最热
最新

相关电子书

更多
建立联系方法之一 立即下载
低代码开发师(初级)实战教程 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载