>  기사  >  Java  >  Java 예제 - 오버로드된 메서드 예외 처리

Java 예제 - 오버로드된 메서드 예외 처리

黄舟
黄舟원래의
2017-02-04 10:09:42951검색

다음 예는 오버로드된 메소드의 예외 처리를 보여줍니다.

/*
 author by w3cschool.cc
 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 예입니다. 오버로드된 메서드 예외 처리 관련 내용을 더 보려면 PHP 중국어 웹사이트(www.php.cn)를 참고하세요!


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.