sun.reflect.Reflection.getCallerClass alternative
2022-09-03 15:45:06
从 如何使用堆栈跟踪或反射找到方法的调用方?(因为我没有足够的声誉来评论本身)
既然 sun.reflect.Reflection.getCallerClass 在 jdk8 中已被删除,那么还有什么替代方案呢?
如何使用 sun.misc.SharedSecrets
JavaLangAccess access = SharedSecrets.getJavaLangAccess();
Throwable throwable = new Throwable();
int depth = access.getStackTraceDepth(throwable);
StackTraceElement frame = access.getStackTraceElement(throwable, depth);