摘要: class Insec{ private int i = 9; protected int j; Insec(){ System.out.println("i = " + i + ", " + "j = " + j); j = 39; } private static int x1 = printInt("static Insec.x1 init"); static int printInt(String s){ System.out.println(s); return 47; } pri... 阅读全文
posted @ 2013-04-06 19:37 E_star 阅读(490) 评论(0) 推荐(0) 编辑