Eclipse不会因任何处理/未处理的异常而中断

时间:2013-06-10 14:57:48

标签: java android eclipse debugging

我想看看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>下启用了以下内容:添加Java异常断点...

异常

暂停捕获的异常

暂停未捕获的异常

0 个答案:

没有答案