0

我想看看 Eclipse 如何在处理/未处理的异常上中断。我在启动活动的第一行添加了以下代码行,以故意引发异常。Eclipse 永远不会闯入有关异常的代码:

try
{
  String s = "abc";
  int v = Integer.valueOf(s);
}
catch(Exception ex)
{
  try
  {
    String s = "abc";
    int v = Integer.valueOf(s);
  }
  catch(Exception ex2)
  {
    String s = "";
  }
}

在 Eclipse 中,为了启用断点处理,我在 Run > Add Java Exception Breakpoint... 下启用了以下功能

例外

挂起捕获的异常

挂起未捕获的异常

4

0 回答 0