728x90 자바 compile error1 [JAVA] ch08-15. 예외 처리 15 public class Ex15 { public static void main(String[] args) { method1(); } static void method1(){ try{ method2();//throw new Exception(); Exception은 try catch 구문 안에서 작동해야 하므로 try catch 구문을 써줘야 한다. }catch(Exception e){} method3();//throw new RuntimeException(); RuntimeException은 try catch 구문이 필요없으므로 compile error가 안남. } static void method2() throws Exception{ throw new Exception(); } static void m.. JAVA/예제 2017. 8. 22. 이전 1 다음 728x90