摘要:
啥也不说了,看代码: public class Instrument { protected void play() { System.out.println("Instrument playing"); } static void tune(Instrument i) { i.play(); } } pu... 阅读全文
摘要:
public class Insect { int i=9; int j; Insect() { prt("i="+i+",j="+j); j=39; } static int x1=prt("static Insect.x1 ... 阅读全文
摘要:
真是"挤出来"的时间学习呢,不多说,看代码: 1 2class A { 3 int i=9; 4 A() 5 { 6 i=10; 7 } 8 static ii=100; 9} 10 11class B extends A 12{ 13 int o=11 14 B() 15 { 16 o=111; ... 阅读全文