/help| TypeaJava언어 표현식,문,또는decla"/> /help| TypeaJava언어 표현식,문,또는decla">

 >  기사  >  Java  >  Java 9에서 JShell 문서를 얻는 방법은 무엇입니까?

Java 9에서 JShell 문서를 얻는 방법은 무엇입니까?

WBOY
WBOY앞으로
2023-09-06 16:45:031351검색

如何在Java 9中获取JShell文档?

Java 9에는 JShell이라는 새로운 대화형 도구가 도입되었습니다. 이 도구는 표현식, 클래스, 인터페이스, 열거형 등을 실행하는 데 사용할 수 있습니다.

자세한 문서는 JShell에서 찾을 수 있으며, 여기에는 내부 명령 및 다양한 옵션 사용에 대한 전체 정보가 포함되어 있습니다. 이 문서는 "/help" 및 "/?"라는 두 가지 명령을 사용하여 액세스할 수 있습니다. JShell의 문서는 내부 제어에 대한 정보에만 국한되지 않고 Javadoc도 포함합니다.

아래 코드 조각에서 " /help" 명령을 사용할 수 있습니다.

<strong>jshell> /help
|   Type a Java language expression, statement, or declaration.
|   Or type one of the following commands:
|   /list [<name or id>|-all|-start]
|     list the source you have typed
|   /edit <name or id>
|     edit a source entry referenced by name or id
|   /drop <name or id>
|     delete a source entry referenced by name or id
|   /save [-all|-history|-start] <file>
|     Save snippet source to a file.
|   /open <file>
|     open a file as source input
|   /vars [<name or id>|-all|-start]
|     list the declared variables and their values
|   /methods [<name or id>|-all|-start]
|     list the declared methods and their signatures
|   /types [<names or id>|-all|-start]
|     list the declared types
|   /imports
|     list the imported items
|   /exit
|     exit jshell
|   /env [-class-path <path> ] [-module-path <path>] [-add-modules <modules>] ...
|     view or change the evaluation context
|   /reset [-class-path <path>] [-module-path <path>] [-add-modules <modules>]...
|     reset jshell
|   /reload [-restore] [-quiet] [-class-path <path>] [-module-path <path>]...
|     reset and replay relevant history -- current or previous (-restore)
|   /history
|     history of what you have typed
|   /help [<command>|<subject>]
|     get information about jshell
|   /set editor|start|feedback|mode|prompt|truncation|format ...
|     set jshell configuration information
|   /? [<command>|<subject> ]
|     get information about jshell
|   /!
|     re-run last snippet
|   /
|     re-run snippet by id
|   /-
|     re-run n-th previous snippet
|   For more information type &#39;/help&#39; followed by the name of a command or a subject.
|   For example &#39;/help /list&#39; or &#39;/help intro&#39;.
|
|   Subjects:
|
|   intro
|     an introduction to the jshell tool
|   shortcuts
|     a description of keystrokes for snippet and command completion,
|     information access, and automatic code generation
|   context
|     the evaluation context options for /env /reload and /reset</strong>

JShell은 목적에 대한 빠른 소개와 사용에 대한 자세한 지침에 대한 액세스와 함께 다양한 기존 내부 명령을 인쇄합니다. 이렇게 하려면 "/help" 명령을 입력한 다음 자세한 명령 이름(예: "/set" 명령)을 입력하면 됩니다.

<strong>jshell> /help /set
|
|  /set
|
|   Set jshell configuration information, including:
|   the external editor to use, the start-up definitions to use, a new feedback mode,
|   the command prompt, the feedback mode to use, or the format of output.
|
|   /set editor [-wait] ...
|     Specify the command to launch for the /edit command.
|     The <command> is an operating system dependent string.
|
|   /set start <file>
|     The contents of the specified become the default start-up snippet s and commands.
|
|   /set feedback <mode>
|     Set the feedback mode describing displayed feedback for entered snippets and commands.
|
|   /set mode <mode>[<old-mode>] -command|-quiet|-delete
|     Create or update a user-defined feedback mode, optionally copying from an existing mode.
|
|   /set prompt <mode>"<prompt>" "<continuation-prompt>"
|     Set the displayed prompts for a given feedback mode.
|
|   /set truncation <mode> <length> <selector> ...
|     Set the maximum length of a displayed value.
|
|   /set format <mode> <field> "<format>" ...
|     Configure a feedback mode by setting the format of a field when the selector matches.
|
|   /set
|     Show editor, start, and feedback settings as /set commands.
|     To show the settings of any of the above, omit the set value.
|
|     To get more information about one of these forms, use /help with the form specified.
|  For example: /help /set format</strong>

JShell의 반환 값을 수정할 것인지(/set Feedback), 기본 편집기(/set editor)를 수정할 것인지, 아니면 세 번째 부분에 입력된 명령을 찾아야 합니다. JShell의 시작( /set start).

rreee

위 내용은 Java 9에서 JShell 문서를 얻는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제