Java 实例 – 重载方法异常处理

2021-04-23 00:29

阅读:602

标签:tps   method   top   com   处理   异常处理   tle   ott   author   

[

Java 实例 - 重载方法异常处理

Java 实例
以下实例演示了重载方法的异常处理:

Main.java 文件

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

Java 实例

]
  • ??本文标题:Java 实例 – 重载方法异常处理 - Break易站
  • 转载请保留页面地址:https://www.breakyizhan.com/java/24177.html

    Java 实例 – 重载方法异常处理

    标签:tps   method   top   com   处理   异常处理   tle   ott   author   

    原文地址:https://www.cnblogs.com/breakyizhan/p/13272654.html


    评论


    亲,登录后才可以留言!