예외처리 와 제네릭컬렉션
9장 예외처리 예외가 발생되었을 때 프로그램을 비정상 종료하지 않고 정상 종료 되게 처리하는 것 System.out.println("프로그램 시작"); try { int num= 10; int result = num/0; System.out.println(result); //ArithmeticException }catch(ArithmeticException e) {//handling 할 ex객체명 System.out.println("예외 발생"); } System.out.println("프로그램 종료"); 2.1 try~catch~finally 문 이용 try{ //예외발생코드 }catch(예외클래스명 변수명){ //예외처리코드 } System.out.println("프로그램 시작"); try { int..
2023.12.11