立即窗口
eclipse ide 中是否有任何地方可以在断点处停止时输入立即代码?
谢谢
Is there anyplace in the eclipse ide that I can enter immediate code while stoped at a breakpoint?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它在 Eclipse 中称为显示窗口。菜单项:窗口/显示视图/显示
要运行命令,您需要键入然后选择显示窗口中的文本,然后选择窗口中的两个 J 图标之一。
It's called the Display window in Eclipse. Menu Item: Window/Show View/Display
To run command you need to type then select the text in the display window and select one of the two J icons in the window.
注意:正如使用 Eclipse 平台调试中提到的,您可以使用 Display查看剪贴簿您的实时代码。
意思是,当您有实时调试会话:
时,您可以在显示器中运行/调试某些表达式或代码视图:
示例:
请参阅我最喜欢的 Eclipse 视图
J
”的按钮:>
”和“J
”的按钮:标准输出将打印到控制台视图。
Note: as mentioned in Debugging with the Eclipse Platform, you can use the Display View to scrapbook your live code.
Meaning, while you have a live debug session:
, you can run/debug some expressions or code in a Display view:
Example:
See My favorite Eclipse view
J
":>
" and a "J
":The standard output will be printed to the Console view.