Eclipse 中的值跟踪

发布于 2024-10-22 03:56:47 字数 270 浏览 1 评论 0 原文

Eclipse 的 Java 工具是否具有与 价值跟踪 检查?这类似于调用层次结构,但跟踪特定变量的所有先前值分配和参数传递。

为了澄清这一点,我正在寻找一种在 IDE 中使用静态分析来跟踪值来源的工具;这不是在运行时调试。

Do Eclipse's Java tools have any equivalent (built-in or plugin) to the Value Tracking inspection in ReSharper? This would be similar to a Call Hierarchy, but tracks all previous value assignments and argument passes for a particular variable.

To clarify, I'm looking for a tool that uses static analysis to trace the origin of a value, within the IDE; this is not debugging at runtime.

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

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

发布评论

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

评论(2

披肩女神 2024-10-29 03:56:47

在eclipse中使用调试器模式是非常强大的。 (添加手表!)

Use the debugger mode in eclipse is very powerful. (Add watches!)

孤星 2024-10-29 03:56:47

突出显示该变量,然后按 Control+Shift+G 或右键单击 -> 引用 -> 工作区将为您提供特定变量的所有引用,您可以通过这种方式查看它被分配或作为参数传递的位置。它将显示在底部的窗口中,双击将直接转到参考。

Highlight the variable and then press Control+Shift+G or Right Click->References->Workspace will get you all of the references of a particular variable, and you can see where it was assigned or passed as an argument that way. It will show up in a window on the bottom, and a double click will take you directly to the reference.

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