In debuggers like gdb, when you are stopped at a breakpoint, you can easily move up the call stack and examine the relevant source and stack frame data. How do you do this in Eclipse?
+3
A:
In the "debug perspective", show the view named "debug". For each thread that is currently halted, this view shows the full call stack. Clicking on one element of this stack switches the editor view to display the corresponding class, and "variables" view will show variables of this stack element.
Riduidel
2010-07-15 14:18:02
+1
A:
In the visual debugger, you will see the entire stack trace. Just CLICK on the level you want to inspect to do that. Definitely easier than using gdb commands. :-)
Pablo Santa Cruz
2010-07-15 14:18:36