OnJava8-Examples/housekeeping/StaticInitialization.java

72 lines
1.3 KiB
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// housekeeping/StaticInitialization.java
2015-11-14 16:18:05 -08:00
// <20>2016 MindView LLC: see Copyright.txt
2015-06-15 17:47:35 -07:00
// Specifying initial values in a class definition.
class Bowl {
Bowl(int marker) {
2015-11-03 12:00:44 -08:00
System.out.println("Bowl(" + marker + ")");
2015-06-15 17:47:35 -07:00
}
void f1(int marker) {
2015-11-03 12:00:44 -08:00
System.out.println("f1(" + marker + ")");
2015-06-15 17:47:35 -07:00
}
}
class Table {
static Bowl bowl1 = new Bowl(1);
Table() {
2015-11-03 12:00:44 -08:00
System.out.println("Table()");
2015-06-15 17:47:35 -07:00
bowl2.f1(1);
}
void f2(int marker) {
2015-11-03 12:00:44 -08:00
System.out.println("f2(" + marker + ")");
2015-06-15 17:47:35 -07:00
}
static Bowl bowl2 = new Bowl(2);
}
class Cupboard {
Bowl bowl3 = new Bowl(3);
static Bowl bowl4 = new Bowl(4);
Cupboard() {
2015-11-03 12:00:44 -08:00
System.out.println("Cupboard()");
2015-06-15 17:47:35 -07:00
bowl4.f1(2);
}
void f3(int marker) {
2015-11-03 12:00:44 -08:00
System.out.println("f3(" + marker + ")");
2015-06-15 17:47:35 -07:00
}
static Bowl bowl5 = new Bowl(5);
}
public class StaticInitialization {
public static void main(String[] args) {
2015-11-03 12:00:44 -08:00
System.out.println("Creating new Cupboard() in main");
2015-06-15 17:47:35 -07:00
new Cupboard();
2015-11-03 12:00:44 -08:00
System.out.println("Creating new Cupboard() in main");
2015-06-15 17:47:35 -07:00
new Cupboard();
table.f2(1);
cupboard.f3(1);
}
static Table table = new Table();
static Cupboard cupboard = new Cupboard();
2015-09-07 11:44:36 -06:00
}
/* Output:
2015-06-15 17:47:35 -07:00
Bowl(1)
Bowl(2)
Table()
f1(1)
Bowl(4)
Bowl(5)
Bowl(3)
Cupboard()
f1(2)
Creating new Cupboard() in main
Bowl(3)
Cupboard()
f1(2)
Creating new Cupboard() in main
Bowl(3)
Cupboard()
f1(2)
f2(1)
f3(1)
2015-09-07 11:44:36 -06:00
*/