-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHiddenImplementation.java
More file actions
44 lines (36 loc) · 1.02 KB
/
HiddenImplementation.java
File metadata and controls
44 lines (36 loc) · 1.02 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
package typeinfo;
import typeinfo.packageaccess.*;
import typeinfo.interfacea.*;
import java.lang.reflect.*;
/**
* RUN:
* javac typeinfo/HiddenImplementation.java && java typeinfo.HiddenImplementation
* OUTPUT:
* public C.f()
* typeinfo.packageaccess.C
* package C.u()
* protected C.v()
* private C.w()
*/
public class HiddenImplementation {
public static void main(String[] args) throws Exception {
A a = HiddenC.makeA();
a.f();
System.out.println(a.getClass().getName());
// Compilation erroe here!
/*
if (a instanceof C) {
C c = (C)a;
c.g();
}
*/
callHiddenMethod(a, "u");
callHiddenMethod(a, "v");
callHiddenMethod(a, "w");
}
static void callHiddenMethod(Object a, String methodName) throws Exception {
Method g = a.getClass().getDeclaredMethod(methodName);
g.setAccessible(true);
g.invoke(a);
}
}