Home > Java > javaTutorial > What is the importance of REPL in Java 9?

What is the importance of REPL in Java 9?

PHPz
Release: 2023-09-14 22:53:08
forward
1258 people have browsed it

在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>
Copy after login

Example-2

的中文翻译为:

示例-2

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

jshell> test("TutorialsPoint")
TutorialsPoint</strong>
Copy after login

The above is the detailed content of What is the importance of REPL in Java 9?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template