如何设置 Eclipse 以在发生异常的行上停止?
如何将 Eclipse 设置为在发生异常时停止。
我有一个 Eclipse 断点设置,用于在异常时中断。在下面的代码示例中,我遇到的问题是 Eclipse 尝试打开 Integer 源代码。有没有办法让调试器在我的代码示例中显示的点中断?如果我向下移动堆栈跟踪,我将到达此行,如果有一种方法可以做到这一点而不会出现“找不到源”窗口,那就太好了。
这可以在Visual Studio中完成,所以它让我发疯,无法在Eclipse中找到做到这一点的方法。
package com.test;
public class QuickTest
{
public static void main(String[] args)
{
try
{
test();
}
catch(NumberFormatException e)
{
System.out.println(e.getMessage());
}
}
private static void test()
{
String str = "notAnumber";
Integer.parseInt(str);//<----I want debugger to stop here
}
}