OnJava8-Examples/housekeeping/OrderOfInitialization.java
Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

37 lines
871 B
Java

//: housekeeping/OrderOfInitialization.java
// ©2015 MindView LLC: see Copyright.txt
// Demonstrates initialization order.
import static com.mindviewinc.util.Print.*;
// When the constructor is called to create a
// Window object, you'll see a message:
class Window {
Window(int marker) { print("Window(" + marker + ")"); }
}
class House {
Window w1 = new Window(1); // Before constructor
House() {
// Show that we're in the constructor:
print("House()");
w3 = new Window(33); // Reinitialize w3
}
Window w2 = new Window(2); // After constructor
void f() { print("f()"); }
Window w3 = new Window(3); // At end
}
public class OrderOfInitialization {
public static void main(String[] args) {
House h = new House();
h.f(); // Shows that construction is done
}
} /* Output:
Window(1)
Window(2)
Window(3)
House()
Window(33)
f()
*///:~