
예외처리 EXCEPTION
·
Programing/JAVA
오류 : 에러 Error와 예외 Exception 에러 : 프로그램 코드에서 해결 할 수 없는 심각한 오류( JVM 오류, 메모리 부족등) 예외 : 프로그램 코드에 의해 처리할 수 있는 오류 예외 클래스 Exception 이미지참조:https://ccm3.net/archives/20672 예외 처리 try~catch(Exception) / by zero 오류 발생 class ExceptionEx02 { public static void main(String args[]) { int number = 100; int result = 0; for(int i=0; i < 10; i++) { result = number / (int)(Math.random() * 10); // 7번째 라인 System.out.pr..