Home >Java >javaTutorial >What are the different shortcut keys in JShell in Java 9?
JShell is an interactive tool that allows us to execute Java code and get the results immediately. We can quickly evaluate an expression or short algorithm without compiling or building it. We can use the JShell tool to execute expressions, classes, methods, variables, etc.
The following are some KeyboardShortcut keys:
The above shortcut keys are very practical on short codes, but on large codes (such as the creation of methods or classes), we can use the JShell editing panel. It allows us to modify our code very easily.
The above is the detailed content of What are the different shortcut keys in JShell in Java 9?. For more information, please follow other related articles on the PHP Chinese website!