从Java中的行号找出方法名?
给定行号、代码文件以及编译后的类文件(如果需要),获取周围方法的签名的最优雅的方法是什么(如果行号在方法中是偶数)?
需要记住的事情:
- 该行甚至可能不在一个方法中
- 该行可能在一个内部或匿名类的方法中
当谷歌搜索时我发现这个重复的问题,所以我自己关闭它。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该信息应该可以从编译器生成的调试器元信息中获得。
That information should be available from the debugger meta information generated by the compiler.