本帖最后由 张学永 于 2012-12-17 15:58 编辑
- class Insect {
- int i = 9;
- int j;
- Insect() {
- prt("i = " + i + ", j = " + j);
- j = 39;
- }
- static int x1 =
- prt("static Insect.x1 initialized");
- static int prt(String s) {
- System.out.println(s);
- return 47;
- }
- }
- public class Beetle extends Insect {
- int k = prt("Beetle.k initialized");
- Beetle() {
- prt("k = " + k);
- prt("j = " + j);
- }
- static int x2 =
- prt("static Beetle.x2 initiallized");
- public static void main(String[] args) {
- prt("Beetle constructor");
- Beetle b = new Beetle();
- }
- }
复制代码 |
|