finally
- 예외여부와 관련없이 실행되는 로직.
- try / catch 실행결과와 무관하게 무조건 실행.
- 어던 작업의 경우에 예외와는 무관하게 반드시 끝내야하는 작업이 있을 때 사용.
try { System.out.println(arr[first] / arr[second]); } catch(ArrayIndexOutOfBoundsException e){ System.out.println("ArrayIndexOutOfBoundsException"); } catch(ArithmeticException e){ System.out.println("ArithmeticException"); } catch(Exception e){ System.out.println("Exception"); } finally { System.out.println("finally"); } | cs |
'STUDY > JAVA' 카테고리의 다른 글
예외처리3 예제 (0) | 2018.01.22 |
---|---|
예외처리2 (0) | 2018.01.22 |
예외처리1 (0) | 2018.01.22 |
인터페이스와 다형성2 (0) | 2018.01.22 |
인터페이스와 다형성1 (0) | 2018.01.22 |