Netbeans:如何在 NullPointerException 上中断?

发布于 2024-08-29 02:55:48 字数 126 浏览 9 评论 0原文

在 netbeans 中调试 java 程序时,我希望调试器停止在导致 NullPointerException 的行上,以便我可以检查那里的变量。我相信我必须在该行设置的断点上使用条件,但条件的语法是什么?

谢谢你的帮助

When debugging a java program in netbeans, I want the debugger to stop on the line that causes a NullPointerException so I can examine the variables there. I believe I have to use a condition on the breakpoint set at that line, but what is the syntax of the condition?

thanks for the help

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

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

发布评论

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

评论(1

昇り龍 2024-09-05 02:55:48

转到调试>新断点(或者 CTRL+SHIFT+F8)。在右上角的下拉菜单中将断点类型更改为异常。在异常类字段中输入 java.lang.NullPointerException 。选择是在捕获、未捕获或两者兼而有之时打破。

调试您的代码并在引发异常时观察光荣的自动断点。

Go to debug > New Breakpoint (alternatively CTRL+SHIFT+F8). Change the breakpoint type to Exception in the top right hand drop down menu. Type java.lang.NullPointerException in the Exception class field. Choose whether to break on caught, uncaught or both.

Debug your code and watch the glorious auto breakpoint when the Exception is thrown.

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