我是Java 9的新手,只是在jshell上练习了一些代码片段
jshell> System.out.println("hello");
hello
jshell> System.out.println("hello")
hello
在两种情况下,我都得到hello
的输出,但是jshell
在行尾没有分号的情况下工作。我知道Java需要分号
答案 0 :(得分:3)
Jshell
自动添加分号。 Doc-Page-2-1或here
Java代码段被输入到JShell中并立即进行评估。显示有关结果,执行的操作以及发生的任何错误的反馈
Note:
Terminating semicolons are automatically added to the end of a complete snippet if not entered.