Netbeans:如何在 NullPointerException 上中断?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
转到调试>新断点(或者 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.