摘要: public class Test { static{ System.out.println("静态区"); } { System.out.println("非静态!"); } private int i; public Test(int i) { super(); this.i = i; } pu 阅读全文
posted @ 2016-09-14 18:20 AmbitiousMice 阅读(177) 评论(0) 推荐(0)