如何在Java中从该方法中查找方法名称?

发布于 2024-10-11 18:03:15 字数 145 浏览 1 评论 0原文

我想知道是否有办法知道运行时执行的方法名称?

例如,在 private void doSomething (String s) 方法中,我想知道我正在执行 doSomething (String s) 方法。

I was wondering if there is a way to know the method name being executed at run time?

For instance, inside a private void doSomething (String s) method, I'd like to know that I am executing the doSomething (String s) method.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

掌心的温暖 2024-10-18 18:03:15

从 JDK1.5 开始,您不需要异常来获取 StackTrace,
你可以通过 Thread.currentThread().getStackTrace() 获取它]:

   public class Test2 {
     public static void main(String args[]) {
        new Test2().doit();
     }
     public void doit() {
        System.out.println(
           Thread.currentThread().getStackTrace()[1].getMethodName()); // output : doit
     }
   }

Since JDK1.5, you don't need an Exception to get the StackTrace,
you can get it with Thread.currentThread().getStackTrace()]:

   public class Test2 {
     public static void main(String args[]) {
        new Test2().doit();
     }
     public void doit() {
        System.out.println(
           Thread.currentThread().getStackTrace()[1].getMethodName()); // output : doit
     }
   }
和影子一齐双人舞 2024-10-18 18:03:15
System.out.println(new Exception().getStackTrace()[0].getMethodName());

另请参阅

System.out.println(new Exception().getStackTrace()[0].getMethodName());

Also See

浅唱ヾ落雨殇 2024-10-18 18:03:15
Method lastMethodCalled = this.getClass().getEnclosingMethod();
Method lastMethodCalled = this.getClass().getEnclosingMethod();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文