JShell fournit également des fonctionnalités autocomplete, variables ou méthodes (en appuyant sur la touche Tab ) lorsque nous tapons partiellement le nom d'une class existante. Si un élément ne peut pas être déterminé sur la base de ce que nous avons saisi, des options possibles sont proposées.
Appuyer sur Tab dans JShell effectue l'une des tâches suivantes :
<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>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!