StackTraceElement stack[] = Thread.currentThread().getStackTrace();
它会把调用栈打出来。
for (StackTraceElement ste : stack) {
logger.error(ste.getClassName()+":"+ste.getMethodName());
}
可以看类和调用方法
如果你使用的eclipse可以非常方便的找到。在eclipse中选中该方法右键然后选Quick type Hierarchy就可以找到了
利用反射,把函数名和对象名传进来,或者用this关键字
传参数!