java中的try与finally
摘要:
View Code 1 package exercise; 2 /** 3 * 基本类型测试try,finally 4 * @author Administrator 5 * 6 */ 7 public class TestReturnAndFinally { 8 public static void main(String[] args) { 9 // TODO Auto-generated method stub10 System.out.println(new TestReturnAndFinally().test());;11 }12 13 static int test() ... 阅读全文
posted @ 2012-04-07 16:35 lovebeauty 阅读(1039) 评论(0) 推荐(0) 编辑