Java 9 - REPL (JShell)
REPL sta per Read-Eval-Print Loop. Con JShell, java ha la capacità REPL. Utilizzando REPL, possiamo codificare e testare la logica basata su java senza compilare usando javac e vedere direttamente il risultato dei calcoli.
Esecuzione di JShell
Apri il prompt dei comandi e digita jshell.
$ jshell
|  Welcome to JShell -- Version 9-ea
|  For an introduction type: /help intro
jshell>Visualizzazione dei comandi JShell
Digita / help una volta avviato il comando jshell.
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 itemsEsecuzione del comando JShell
Digita / imports una volta avviato il comando jshell e visualizza le importazioni utilizzate.
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>Esecuzione di calcoli in JShell.
Prova a eseguire semplici calcoli in JShell.
jshell> 3+1
$1 ==> 4
jshell> 13%7
$2 ==> 6
jshell> $2
$2 ==> 6
jshell>Creazione e utilizzo di funzioni in JShell
Crea una funzione doubled () per prendere int e restituire il suo valore raddoppiato.
jshell> int doubled(int i){ return i*2;}
|  created method doubled(int)
jshell> doubled(6)
$3 ==> 12
jshell>Uscita da JShell
Digita / esci.
jshell> /exit
| Goodbye