抛出异常时中断

发布于 2024-09-06 14:03:58 字数 60 浏览 9 评论 0原文

Visual Studio 可以选择在引发未处理的异常时自动中断调试器,Eclipse 是否有类似的功能?

Visual Studio has an option to break automatically into the debugger when an unhandled exception is thrown, does Eclipse have similar functionality?

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

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

发布评论

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

评论(2

一江春梦 2024-09-13 14:03:58

您可以定义要在其上设置断点的精确异常列表,即使这些异常未被捕获(这应该相当于“unhandled”)

未捕获

You are able to define the precise list of Exception you want to have a breakpoint on, even if those exceptions are uncaught (which should be the equivalent of "unhandled")

uncaught

写下不归期 2024-09-13 14:03:58

进入断点窗口,有一个看起来像J!的按钮,在那里你可以为Java异常设置断点,无论是捕获的还是未捕获的。您可以引用类或使用模式匹配器作为异常名称。

另外,在窗口 -> 下首选项,选择 Java ->调试,有一个复选框可以告诉调试器在未捕获的异常上中断

Go to the breakpoints window, there's a button that looks like J!, there you can set breakpoints for Java exceptions, either caught or uncaught. You can reference classes or use pattern matchers for exception names.

Also, under Window -> Preferences, Select Java -> Debug and there's a checkbox to tell the debugger to break on uncaught exceptions

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