从Java中的行号找出方法名?

发布于 2024-08-06 01:21:13 字数 290 浏览 10 评论 0原文

给定行号、代码文件以及编译后的类文件(如果需要),获取周围方法的签名的最优雅的方法是什么(如果行号在方法中是偶数)?

需要记住的事情:

  • 该行甚至可能不在一个方法中
  • 该行可能在一个内部或匿名类的方法中

当谷歌搜索时我发现这个重复的问题,所以我自己关闭它。

Given a line number, the code file, as well as the compiled class file if necessary, what is the most elegant way to get the signature of the surrounding method (if the line number is even in a method)?

Things to keep in mind:

  • the line might not even be in a method
  • the line might be in a method of an inner or anonymous class

While Googling I discovered this duplicate question so I'm closing this down myself.

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

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

发布评论

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

评论(1

旧话新听 2024-08-13 01:21:13

该信息应该可以从编译器生成的调试器元信息中获得。

javac -g:lines foo.java

That information should be available from the debugger meta information generated by the compiler.

javac -g:lines foo.java

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文