2013年8月29日

java非静态内部类

摘要: package frank;import java.lang.*;public class App{ public static void main(String[] args) { Integer i1 = 127; Integer i2 = 127; System.out.println(i1==i2); App a = new App(); a.get(); } private void get() { App02 a=new App02(); a.print(); } private int age; private class App02 { private int... 阅读全文

posted @ 2013-08-29 23:04 wp456 阅读(354) 评论(0) 推荐(0)

导航