检查jdb中方法的返回值

发布于 2024-10-16 01:50:27 字数 311 浏览 2 评论 0原文

假设在 jdb 中,我位于代码中的以下位置:

return 22; 
-->} 

如何转储要返回的对象(或基元)的值?在返回之前必须将返回值存储在局部变量中似乎很痛苦,这样我就可以看到将要返回的内容。

实际上,我想在 jdb 中执行 gdb 链接中描述的操作:

如何检查GDB中函数的返回值?

Suppose in jdb I am at the following spot in the code:

return 22; 
-->} 

How do I dump the value of the object (or primitive) that is going to be returned? It seems like a pain to have to store the return value in a local variable before returning it, just so that I can see what's going to be returned.

Effectively, I want to do in jdb what is described in the link for gdb:

How to inspect the return value of a function in GDB?

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

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

发布评论

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

评论(1

悸初 2024-10-23 01:50:27

虚拟机是面向堆栈的,因此不需要读取那些寄存器。在方法中,您可以跟踪方法退出,方法退出时将显示返回值。这并不完全是您所要求的,因为您只有在方法退出后才能看到该值。您的另一个选择是打印将返回的表达式,假设这没有副作用。

Well the VM is stack orientated and so there is nothing like those registers to read. While in the method you can do trace method exit and the return value will be displayed when the method exits. This is not exactly what you asked since you only see the value once the method has exited. Your other option is to print the expression that will be returned, assuming this has no side-effects.

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