📜  终端中的 java - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:22.639000             🧑  作者: Mango

代码示例1
jshell
|  Welcome to JShell -- Version 12.0.1
|  For an introduction type: /help intro

jshell> int i=99;
i ==> 99

jshell> System.out.println(i);
99