Home  >  Article  >  Java  >  How to create classes and objects in JShell in Java 9?

How to create classes and objects in JShell in Java 9?

WBOY
WBOYforward
2023-08-31 11:25:02932browse

在Java 9的JShell中如何创建类和对象?

JShell是在Java 9中发布的一种新的Java shell工具。它是第一个官方的REPLRead-Evaluate-Print-Loop)应用程序。该工具有助于执行和评估简单的Java程序和逻辑,例如语句循环表达式等等。Java REPL在命令提示符下提供了一个简单的编程环境。它可以读取输入、评估它并打印输出。

在下面的示例中,我们可以使用命令提示符在JShell中创建一个类和对象。

示例

<strong>jshell> class Employee {
...> private String name;
...>    Employee(String name) {
...>       this.name=name;
...>    }
...>    String getName() {
...>       return name;
...>    }
...>    void setName(String name) {
...>       this.name=name;
...>    }
...> }
| created class Employee</strong>

示例

<strong>jshell> Employee emp = new Employee("Adithya")
emp ==> Employee@4b952a2d

jshell> emp.getName()
$3 ==> "Adithya"</strong>

The above is the detailed content of How to create classes and objects in JShell in Java 9?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete