JShell 은 기존 class의 이름을 부분적으로 입력할 때 autocomplete 기능, variables 또는 methods(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 중국어 웹사이트의 기타 관련 기사를 참조하세요!