OnJava8-Examples/housekeeping/StaticInitialization.java

74 lines
1.4 KiB
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// housekeeping/StaticInitialization.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
// Specifying initial values in a class definition
2015-06-15 17:47:35 -07:00
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) {
System.out.println("main creating new Cupboard()");
2015-06-15 17:47:35 -07:00
new Cupboard();
System.out.println("main creating new Cupboard()");
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)
main creating new Cupboard()
2015-06-15 17:47:35 -07:00
Bowl(3)
Cupboard()
f1(2)
main creating new Cupboard()
2015-06-15 17:47:35 -07:00
Bowl(3)
Cupboard()
f1(2)
f2(1)
f3(1)
2015-09-07 11:44:36 -06:00
*/