JShell は、既存の クラス の名前を部分的に入力するときに、 autocomplete 機能を提供することもできます。 変数またはメソッド(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 中国語 Web サイトの他の関連記事を参照してください。