[자바기초문법] finally 문이란 바로 이런 것
샘플코드는 public class FinallyTest { public static void main(String[] args) { try{ int a=0, b=0; if(a==b) throw new Exception("throw exception"); }catch(Exception e){ System.out.println("catch"); return; }finally{ System.out.println("finally"); } System.out.println("hello world"); } } 실행결과는 catch finally 하하핫~ 바로 이거죠 이거ㅋ catch 문에서 return 문으로 main() 메소드를 강제(?)종료함에도 불구하고, 반드시 실행되고야 마는 finally 의 위력ㅋ 어떻게..
IT/참조자료
2008. 3. 30. 17:11