一个容易误解的finally和return的执行顺序
try {System.out.println("Test Return");return;}catch(Exception e){}finally{System.out.println("excute finally!");}