0

可能重复:
退回 Eclipse 调试器

我一直在eclipse中调试我的项目并在几个类中放置断点并在eclipse中按F6并从一个断点向前移动到另一个断点但是如果我想向后移动到反向流中的前一个断点怎么办有没有捷径因为 F6 带我们前进,那么后退呢?请指教..!

4

3 回答 3

0

Only thing you can do is that if Object A calls B and B calls C your debugger is in C and you want to see variables/etc in object A, you can select A from the thread trace in debugger window and see that.

Debugger flow doesn't move backwards i.e. if there are two steps: step-1 and step-2 and step-1 is complete, control is at step-2, the you can't go back to step-1.

于 2012-10-08T14:20:40.833 回答
0

您可以使用“Drop to frame”操作将您带回到函数的开头。默认情况下,没有与此关联的键,但您可以在“Window / Preferences / General / Keys”中关联一个。但是你不能去上一个断点。

于 2012-10-08T14:14:01.963 回答
0

eclipse中没有办法,但是您可以将代码设置为在运行方法后返回到前一点。利用

//declare a method
public void methodName()
{
    //code
}

做一个方法。要调用该方法,请使用

methodName();

它将运行该方法,然后返回到上一点。

于 2012-10-08T14:17:39.717 回答