I have the following doubt about the Eclipse debugger dbugging a Java application.
When it stop on a break point I know that I can go to the next step. But can I also go to the previous one?
I have the following doubt about the Eclipse debugger dbugging a Java application.
When it stop on a break point I know that I can go to the next step. But can I also go to the previous one?
The best compromise is "Drop to Frame" (one of the icons in the debugging area), which essentially resets the stack frame and puts you at the top of the method. This won't reset any external side effects, so if some code between the top of the method and your current position changed any properties of an object, you'll have to deal with that.