-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathHiddenImplementation.java
More file actions
31 lines (27 loc) · 871 Bytes
/
Copy pathHiddenImplementation.java
File metadata and controls
31 lines (27 loc) · 871 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
// Sneaking around package access.
package thinkinginjava.typeinfo;
import java.lang.reflect.*;
import thinkinginjava.typeinfo.interfacea.A;
import thinkinginjava.typeinfo.packageaccess.HiddenC;
public class HiddenImplementation {
public static void main(String[] args) throws Exception {
A a = HiddenC.makeA();
a.f();
System.out.println(a.getClass().getName());
// Compile error: cannot find symbol 'C':
/*
* if(a instanceof C) { C c = (C)a; c.g(); }
*/
// Oops! Reflection still allows us to call g():
callHiddenMethod(a, "g");
// And even methods that are less accessible!
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);
}
}