JShell 工具已經在Java 9 版本中引入。它也被稱為REPL(Read-Evaluate-Print-Loop)工具,讓我們可以執行Java程式碼並立即獲得結果。我們可以使用"/types"指令列出宣告的類型,如class、interface、enum等。
以下是JShell中不同的"/types"指令。
<strong>/types /types [ID] /types [Type_Name] /types -start /types -all</strong>
在下面的程式碼片段中,創建了類,介面和枚舉類型。然後,我們可以套用不同的"/types"指令。
<strong>jshell> enum Operation { ...> ADDITION, ...> DIVISION; ...> } | created enum Operation jshell> class Employee { ...> String empName; ...> int age; ...> public void empData() { ...> System.out.println("Employee Name is: " + empName); ...> System.out.println("Employee Age is: " + age); ...> } ...> } | created class Employee jshell> interface TestInterface { ...> public void sum(); ...> } | created interface TestInterface jshell> /types | enum Operation | class Employee | interface TestInterface jshell> /types 1 | enum Operation jshell> /types -start jshell> /drop Operation | dropped enum Operation jshell> /types -all | enum Operation | class Employee | interface TestInterface</strong>
以上是在Java 9的JShell中,有哪些不同的'/types'指令?的詳細內容。更多資訊請關注PHP中文網其他相關文章!