try~catch1 Try~Catch~Finally 사용시 주의사항 궁금증의 시작 Java Exception에 대해 구글링을 하다가 우연히 아래와 같은 예제 코드를 접하게 되었습니다. public class TryCatchFinallyTrick { public static void main(String[] args) { System.out.println("The output is: " + getName()); } static int getName(){ int a = 3; try{ System.out.println("I am try"); a = 4; return a; } catch(Exception e){ System.out.println("I am catch"); a = 5; return a; } finally { System.out.println("I am finall.. 2016. 10. 6. 이전 1 다음