예외(Exception) 처리 썸네일형 리스트형 예외(Exception) 처리 기본 예외처리 기본 예제 public class ExceptionTest { public static void main(String[] args) { try{ int i = Integer.parseInt(args[0]); int j = Integer.parseInt(args[1]); System.out.println(i/j); } catch (ArithmeticException e) { e.printStackTrace(); System.out.println("0을 입력하지 마시오"); } System.out.println("완료"); } } java.lang.ArithmeticException: / by zero at ExceptionTest.main(ExceptionTest.java:6) 0을 입력하지 마시.. 더보기 이전 1 다음