Java重载方法异常
如何重载方法处理异常?
解决方法
这个例子显示了如何处理异常与重载方法。需要每个方法或地方有一个try catch块使用。
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