Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Using Variables in JShell of Java 9

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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

My Personal Notes arrow_drop_up
Last Updated : 28 Sep, 2022
Like Article
Save Article
Similar Reads
Related Tutorials