44 lines
1.0 KiB
Java
Raw Permalink Normal View History

2015-09-07 11:44:36 -06:00
// reuse/Beetle.java
// (c)2021 MindView LLC: see Copyright.txt
2015-11-15 15:51:35 -08:00
// We make no guarantees that this code is fit for any purpose.
2016-09-23 13:23:35 -06:00
// Visit http://OnJava8.com for more book information.
2016-01-25 18:05:55 -08:00
// The full process of initialization
2015-06-15 17:47:35 -07:00
class Insect {
private int i = 9;
protected int j;
Insect() {
2015-11-03 12:00:44 -08:00
System.out.println("i = " + i + ", j = " + j);
2015-06-15 17:47:35 -07:00
j = 39;
}
private static int x1 =
printInit("static Insect.x1 initialized");
static int printInit(String s) {
2015-11-03 12:00:44 -08:00
System.out.println(s);
2015-06-15 17:47:35 -07:00
return 47;
}
}
public class Beetle extends Insect {
private int k = printInit("Beetle.k initialized");
public Beetle() {
2015-11-03 12:00:44 -08:00
System.out.println("k = " + k);
System.out.println("j = " + j);
2015-06-15 17:47:35 -07:00
}
private static int x2 =
printInit("static Beetle.x2 initialized");
public static void main(String[] args) {
2015-11-03 12:00:44 -08:00
System.out.println("Beetle constructor");
2015-06-15 17:47:35 -07:00
Beetle b = new Beetle();
}
2015-09-07 11:44:36 -06:00
}
/* Output:
2015-06-15 17:47:35 -07:00
static Insect.x1 initialized
static Beetle.x2 initialized
Beetle constructor
i = 9, j = 0
Beetle.k initialized
k = 47
j = 39
2015-09-07 11:44:36 -06:00
*/