Java 9 - REPL (JShell)
REPL は、Read-Eval-Print ループの略です。 JShell では、Java に REPL 機能があります。 REPL を使用すると、javac を使用してコンパイルせずに Java ベースのロジックをコーディングしてテストし、計算結果を直接確認できます。
JShell の実行
コマンド プロンプトを開き、jshell と入力します。
$ jshell | Welcome to JShell -- Version 9-ea | For an introduction type: /help intro jshell>
JShell コマンドの表示
jshell コマンドの実行が開始されたら、/help と入力します。
jshell> /help | Type a Java language expression, statement, or declaration. | Or type one of the following commands: | /list [<name or id>|-all|-start] | list the source you have typed | /edit <name or id> | edit a source entry referenced by name or id | /drop <name or id> | delete a source entry referenced by name or id | /save [-all|-history|-start] <file> | Save snippet source to a file. | /open <file> | open a file as source input | /vars [<name or id>|-all|-start] | list the declared variables and their values | /methods [<name or id>|-all|-start] | list the declared methods and their signatures | /types [<name or id>|-all|-start] | list the declared types | /imports | list the imported items
JShell コマンドの実行
jshell コマンドの実行が開始されたら /imports と入力し、使用されているインポートを確認します。
jshell> /imports | import java.io.* | import java.math.* | import java.net.* | import java.nio.file.* | import java.util.* | import java.util.concurrent.* | import java.util.function.* | import java.util.prefs.* | import java.util.regex.* | import java.util.stream.* jshell>
JShell で計算を実行します。
JShell で簡単な計算を実行してみてください。
jshell> 3+1 $1 ==> 4 jshell> 13%7 $2 ==> 6 jshell> $2 $2 ==> 6 jshell>
JShell での関数の作成と使用
関数 doubled() を作成して、int を取り、その double 値を返します。
jshell> int doubled(int i){ return i*2;} | created method doubled(int) jshell> doubled(6) $3 ==> 12 jshell>
JShell の終了
/exit と入力してください。
jshell> /exit | Goodbye
Java