摘要:
class Egg2 { static int i=5; int j=5; static//父类静态变量初始化块首先被执行,在main方法之前。 { System.out.println("superClass static block initialized "); } protected class Yolk { public Yolk() { System.out.println("Egg2... 阅读全文
posted @ 2007-06-26 13:22 王君 阅读(411) 评论(0) 推荐(0)