Open In App

Using Variables in JShell of Java 9

Last Updated : 28 Sep, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Prerequisite : JShell in Java 9 We can declare variables and use anywhere throughout Jshell session. Let’s create an integer variable. jshell variable  example Semicolon (;) is optional, we can leave it and it works fine. See, variable b is created without using semicolon. jshell variable

Scratch Variables

If we don’t provide variable name, Java create implicit variable to store the value. These variables start with $ sign. We can use these variable by specifying implicit variable, as we did in the following screen-shot. 
jhsell variable

Expressions

We can test any valid Java expression to get instant output. See, the following example. Adding two integers jshell add Compound expression Creating and Calling Methods To test method business logic, create a method and get result immediately. See, the following example jshell method jshell calling


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads