Home > Java > javaTutorial > body text

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

WBOY
Release: 2023-08-31 11:25:02
forward
997 people have browsed it

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

示例

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

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

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!

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!