如何获得不安全的类的实例?
我总是得到安全异常。 我列出了OpenJDK 6执行代码。 我想与功能勾搭sun.misc.Unsafe
提供给我,但我总是最后得到SecurityException("Unsafe")
public static Unsafe getUnsafe() {
Class cc = sun.reflect.Reflection.getCallerClass(2);
if (cc.getClassLoader() != null)
throw new SecurityException("Unsafe");
return theUnsafe;
}
(请不要试图告诉我这是怎么不安全使用这个类。)