jdb条件断点

发布于 2024-08-30 13:30:20 字数 114 浏览 10 评论 0原文

我使用 JDB 远程调试我的应用程序,只有 JDB,没有 IDE,jdb 有没有办法设置条件断点?

例如:当 mystr.equals("abc") 时停在 MyClass:80

I remote debug my application using JDB, just JDB, no IDEs, is there a way in jdb to set a conditional breakpoint?

eg: stop at MyClass:80 when mystr.equals("abc")

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

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

发布评论

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

评论(3

也只是曾经 2024-09-06 13:30:20

Jdb 不支持条件断点,但作为最后的手段,您可以尝试使用 gcj 编译程序并使用 gdb 进行调试,它确实支持条件断点。根据项目的复杂性,这可能是也可能不是可行的选择。您可能还可以使用其他鲜为人知的命令行调试器。

Jdb does not support conditional breakpoints, but as a last-resort you may try compiling your program with gcj and using gdb to do the debugging, which does support conditional breakpoints. Depending on the complexity of your project this may or may not be a feasible option. There may be other lesser-known command-line debuggers that you could use as well.

野鹿林 2024-09-06 13:30:20

Java Debugger 不支持条件断点。如果您有“窗口环境”,另一种选择是使用 Eclipse 等 IDE,然后在“调试”视角下工作。在那里你会发现一些不错的功能,比如条件断点。

Java DeBugger does not support conditional breakpoints. An alternative, if you have a "windowed environment" is to use an IDE like Eclipse and then work in Debug perspective. There you will find those kind of nice features like conditional breakpoint.

獨角戲 2024-09-06 13:30:20

嗯,设置条件断点的一种巧妙方法是创建一个 if 语句,将 System.out.print("") 放入其中并告诉 jdb 在该行停止。我想对于这个问题有更全面的方法(正如其他人指出的那样)。

Well, a hacky way of setting up a conditional breakpoint is to create an if statement, put System.out.print("") inside and tell the jdb to stop at that line. I guess there are more comprehensive approaches to that problem though (as others have indicated).

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