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

link|improve this question

feedback

3 Answers

up vote 13 down vote accepted

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.

link|improve this answer
Expressions are pretty close. Thanks! – fatcat1111 Jul 10 '09 at 22:00
No problem - glad it helped. – AdamC Jul 10 '09 at 22:01
thanks help for me also – Sushant Feb 28 at 11:46
feedback

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.

link|improve this answer
4  
i would recommend updating this as the correct answer as it is much closer to the immediate window than the "expressions view". – Michal Aug 5 '09 at 9:00
Thanks for that - I was missing the immediate window! – Bayard Randel Sep 15 '10 at 21:36
2  
How to execute statements in 'Display' window? In Visual studio, if we press enter then that statement gets executed automatically. – Shekhar Mar 28 '11 at 7:23
1  
Select the statement, right-click and then Execute. You can also press the little play button on the display toolbar. – duluca May 9 '11 at 0:37
This should be the accepted answer, thanks Todd – Tony Leeper Jan 23 at 13:28
show 1 more comment
feedback

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

link|improve this answer
2  
To clarify, you can highlight some code within the debugger and hit ctrl+shift+i or right-click->inspect to see the evaluation of the code – Rich Seller Jul 11 '09 at 21:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.