처리 썸네일형 리스트형 throws 처리 throw 처리 public class ThrowsTest { static void test() throws ClassNotFoundException{ Class.forName("java.lang.Object"); System.out.println(100/0); } public static void main(String[] args) throws ClassNotFoundException { // JVM에 예외를 전달한다. // 예외 메시지를 출력한다. // JVM이 예외 메시지를 출력 대신에 다른 처리를 하고자 한다면 // try-catch를 사용한다. test(); } } 항상동일하게 처리합니다 더보기 이전 1 다음