Immediate Window for Eclipse

Visual StudioEclipseImmediate Window

Visual Studio Problem Overview


Does Eclipse have an analog to Visual Studio's "Immediate Window", a window where I can evaluate statements while in the debugger?

Visual Studio Solutions


Solution 1 - Visual Studio

Yes. The view name is "Display".

Window->Show View->Other It is under the Debug folder.

Once in there you evaluate statements while in the debugger.

Solution 2 - Visual Studio

Eclipse has a really cool concept call Scrapbook Pages where you can evaluate statements even when you're not debugging. However, if you want to eval code using values from the current program, go to Window->Show View->Expressions. There you can put in any expression you want and track it as your program executes.

Solution 3 - Visual Studio

Inspect ctrl-shift-i or Display ctrl-shift-d?

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJustin R.View Question on Stackoverflow
Solution 1 - Visual StudioToddView Answer on Stackoverflow
Solution 2 - Visual StudioAdamCView Answer on Stackoverflow
Solution 3 - Visual StudioTrevor HarrisonView Answer on Stackoverflow