我正在使用 jdk-9,我想sun.reflect.*
在我的代码中使用包,但我得到了以下异常
Exception in thread 'main' java.lang.IllegalAccessError : class Test (in moudle: Unnamed Module) cannot access class sun.reflect.Reflaction (in module:java.base), sun.reflect is not exported to Unnamed module
当我使用 JDK-9 运行下面的示例代码时
public static void main(String args[]){
System.out.println(Reflection.getCallerClass(3));
}