Java 예외

개요[ | ]

try catch 키워드로 예외 상황에 대한 처리 가능
  • try catch 예제 ( 배열 내 없는 index 를 호출할 경우 )
public class Main {
  public static void main(String[ ] args) {
    try {
      int[] myNumbers = {1, 2, 3};
      System.out.println(myNumbers[1]);
      System.out.println(myNumbers[10]);
    } catch (Exception e) {
      System.out.println("Something went wrong.");
    }
  }
}
  • try catch finally 예제 ( finally는 오류든 정상이든 출력 )
public class Main {
  public static void main(String[] args) {
    try {
      int[] myNumbers = {1, 2, 3};
      System.out.println(myNumbers[1]);
      System.out.println(myNumbers[10]);
    } catch (Exception e) {
      System.out.println("Something went wrong.");
    } finally {
      System.out.println("try , catch , finally 예제는 위와 같습니다.");
    }
  }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}