>  기사  >  Java  >  Java 9의 JShell에서 이전에 입력한 조각을 인쇄하는 방법은 무엇입니까?

Java 9의 JShell에서 이전에 입력한 조각을 인쇄하는 방법은 무엇입니까?

PHPz
PHPz앞으로
2023-09-13 12:49:02622검색

如何在Java 9的JShell中打印先前键入的片段?

JShell is an official Read-Evaluate-Print-Loop (REPL) introduced in Java 9. It provides an interactive shell for quickly prototyping, debugging, and learning Java and Java API without the need for a main() method.

The "/list" command in JShell prints out all of the previously typed snippets of that particular session with a unique identifier called the snippet ID. By default, the output doesn't contain any snippet with only valid statements or expressions that can be shown. We need to see all previously typed code include errors, then pass the -all argument to the /list command.

In the below code snippet, we have created some statements like expression, class, method, and etc in JShell.

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

jshell> int x=20
x ==> 20

jshell> "Java 9"
$2 ==> "Java 9"

jshell> System.out.println($2)
Java 9

jshell> class Test {
...> }
| created class Test

jshell> void print() {
...> System.out.println("Tutorialspoint");
...> }
| created method print()

jshell> print()
Tutorialspoint

jshell> System.out.println(x)
20</strong>

在下面的代码片段中,我们可以使用"/list"命令查看所有先前输入的代码片段。

<strong>jshell> /list

1 : int x=20;
2 : "Java 9"
3 : System.out.println($2)
4 : class Test {
}
5 : void print() {
System.out.println("Tutorialspoint");
}
6 : print()
7 : System.out.println(x)
</strong>

위 내용은 Java 9의 JShell에서 이전에 입력한 조각을 인쇄하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제