Java的REPL
BlueJ的code pad实用吗?Java对(Read-Eval-Print Loop)不提供原生支持。这样的“交互式解释器”或“交互式编程环境”,在学习表达式和简单语句时,比較方便。
比如在code pad中输入一个表达式
1+2
或者
int i =1;
i++; //没有分号将作为表达式。code pad直接输出结果
i
而code pad输出结果,如图所看到的:
假设你认为实用。能够在学习《编程导论(Java)·3.2实现》时用一下。
- 打开:菜单view--Show Code Pad。则在 the object bench旁边出现Code Pad。
- The code pad area can now be used to enter expressions or statements. On pressing
Enter, each line will be evaluated and a result may be displayed.
- 很多其它:參考 http://www.bluej.org/tutorial/tutorial-201.pdf中的 6 Using the code pad