JShell 是一个学习Java的交互式工具,它是一个评估声明的REPL(Read-Evaluate-Print-Loop) 、语句和表达式。
在离开 JShell 会话时,我们希望重用之前输入到新会话中的代码。这可以通过使用命令来完成:/open [File_Path]。此命令将加载作为选项提供的 file[File_Path] 中找到的所有代码和内部命令。
在下面的代码片段中,我们可以使用 “/open [File_Path]”命令从扩展名为“.jsh”的目录加载源代码。
<strong>C:\Users\User>jshell | Welcome to JShell -- Version 9.0.4 | For an introduction type: /help intro jshell> x | Error: | cannot find symbol | symbol: variable x | x | ^ jshell> y | Error: | cannot find symbol | symbol: variable y | y | ^ jshell> /list jshell> /open C:\Users\User\Desktop\save.jsh jshell> /list 1 : int x = 15; 2 : double y = 25.0; 3 : public int sum(int a, int b) { return a + b; } jshell> x x ==> 15 jshell> y y ==> 25.0 jshell> int result = sum(5, 7) result ==> 12</strong>
以上是在Java 9中,我们如何将源代码加载到JShell中呢?的详细内容。更多信息请关注PHP中文网其他相关文章!