-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathSweetShop.java
More file actions
44 lines (36 loc) · 811 Bytes
/
SweetShop.java
File metadata and controls
44 lines (36 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//: typeinfo/SweetShop.java
// Examination of the way the class loader works.
package thinkinginjava.typeinfo;
class Candy {
static {
System.out.println("Loading Candy");
}
}
class Gum {
static {
System.out.println("Loading Gum");
}
}
class Cookie {
static {
System.out.println("Loading Cookie");
}
}
public class SweetShop {
static {
System.out.println("sweet shop .....");
}
public static void main(String[] args) {
System.out.println("inside main");
new Candy();
System.out.println("After creating Candy");
try {
Class.forName("thinkinginjava.typeinfo.Gum");
} catch (ClassNotFoundException e) {
System.out.println("Couldn't find Gum");
}
System.out.println("After Class.forName(\"Gum\")");
new Cookie();
System.out.println("After creating Cookie");
}
}