16

netbeans 有类似 Eclipse 调试显示视图的东西吗?

我喜欢在 Eclipse 调试模式下尝试 Java 代码的交互式窗口,这篇文章中提到了它:

是否有任何类似 Python 的 Java 交互式控制台?

只是想知道我是否可以在 netbeans 中得到相同的结果

4

3 回答 3

23

有一个菜单选项:调试 - 评估表达式...

还有一个快捷方式:Ctrl+ F9(在 Windows 中)

您可以在How to Evaluate Code中查看说明

于 2014-04-21T12:00:15.260 回答
0

There isn't an interactive window for debugging quite like Eclipse, although you can set up breakpoints in the program while debugging to follow the step by step route in which the program executes. Have you looked at the NetBeans site? http://netbeans.org/features/java/debugger.html

于 2013-02-08T16:50:05.603 回答
0

调试时,按 ctrl+shift+I 计算表达式。在“评估表达式”窗口中,您可以执行与 eclipse 显示窗口中相同的操作。

于 2014-03-09T15:54:58.403 回答