-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWhoCalled.java
More file actions
48 lines (40 loc) · 975 Bytes
/
WhoCalled.java
File metadata and controls
48 lines (40 loc) · 975 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
45
46
47
48
package exceptions;
/**
* RUN:
* javac exceptions/WhoCalled.java && java exceptions.WhoCalled
* OUTPUT:
* f
* main
* -----------------------------------
* f
* g
* main
* -----------------------------------
* f
* g
* h
* main
*/
// import java.util.logging.*;
// import java.io.*;
public class WhoCalled {
static void f() {
try {
throw new Exception();
}
catch (Exception e) {
for (StackTraceElement ste : e.getStackTrace()) {
System.out.println(ste.getMethodName());
}
}
}
static void g() { f(); }
static void h() { g(); }
public static void main(String[] args) {
f();
System.out.println("-----------------------------------");
g();
System.out.println("-----------------------------------");
h();
}
}