forked from rcseacord/JavaSCR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMethodCallStack.java
More file actions
56 lines (49 loc) · 1.09 KB
/
Copy pathMethodCallStack.java
File metadata and controls
56 lines (49 loc) · 1.09 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
package err00j;
import java.lang.UnsupportedOperationException;
class MethodCallStack {
public static void main(String[] args) {
System.out.println("Enter main()");
try {
methodA();
}
catch (UnsupportedOperationException uoe) {
uoe.printStackTrace();
}
System.out.println("Exit main()");
}
private static void methodA() {
System.out.println("Enter methodA()");
try {
methodB();
}
finally {
System.out.println("methodA() finally block");
}
System.out.println("Exit methodA()");
}
private static void methodB() {
System.out.println("Enter methodB()");
try {
methodC();
}
finally {
System.out.println("methodB() finally block");
}
System.out.println("Exit methodB()");
}
private static void methodC() {
System.out.println("Enter methodC()");
try {
methodD();
}
finally {
System.out.println("methodC() finally block");
}
System.out.println("Exit methodC()");
}
private static void methodD() {
System.out.println("Enter methodD()");
throw new UnsupportedOperationException();
// unreachable
}
}