JShell 還可以在我們部分鍵入現有類別的名稱時提供自動完成功能、變數或方法(按Tab 鍵)。如果某個項目無法根據我們輸入的內容確定,則會提供可能的選項。
在JShell 中按Tab 鍵 執行以下任務之一:
<strong>C:\Users\User>jshell | Welcome to JShell -- Version 9.0.4 | For an introduction type: /help intro jshell> String studentName(String firstName, String lastName) ...> { ...> return firstName + lastName; ...> } | created method studentName(String, String) jshell> /methods | String studentName(String, String) jshell> str <Press Tab Key> studentName( jshell> studentName( studentName( Signatures: String studentName(String firstName, String lastName) <press tab again to see documentation> jshell> studentName( String studentName(String firstName, String lastName) <no documentation found> <press tab again to see all possible completions; total possible completions: 545></strong>
以上是在Java 9中,JShell中的Tab鍵有什麼用途?的詳細內容。更多資訊請關注PHP中文網其他相關文章!