Maison  >  Article  >  Java  >  Quelle est l'importance de REPL dans Java 9 ?

Quelle est l'importance de REPL dans Java 9 ?

PHPz
PHPzavant
2023-09-14 22:53:081230parcourir

在Java 9中,REPL的重要性是什么?

REPL 代表Read-Eval-Print-Loop。它是一个shell,用户在其中输入一个表达式,它被评估,并将结果返回给用户。使用REPL的主要目的是在不创建java文件、编译和运行的情况下快速与Java程序交互。JShell对开发人员非常有用,可以帮助我们学习Java语言。

以下是REPL的一些特点:

  • 它是Java 9内置的。
  • 我们可以测试任何Java表达式,无需创建类文件、编译和运行。
  • 它可以自动补全方法,只需键入TAB键,就像在您的编辑器中一样。
  • 我们可以定义方法,并在以后调用它们。
  • 如果抛出异常,它会显示给我们。
  • 我们可以编辑任何方法,并对它们进行更改。
  • 有内置命令。

以下是使用Jshell工具的REPL的几个示例。

示例-1

<strong>C:\Users\User>jshell
| Welcome to JShell -- Version 9.0.4
| For an introduction type: /help intro

jshell> Math.round(34.543)
$1 ==> 35</strong>

Example-2

的中文翻译为:

示例-2

<strong>jshell> void test(String s) {
...>       System.out.println(s);
...>    }
| created method test(String)

jshell> test("TutorialsPoint")
TutorialsPoint</strong>

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer