Java 9でJShellドキュメントを取得するにはどうすればよいですか?
Java 9は、 JShellと呼ばれる新しいインタラクティブツールを導入しました。 。このツールは、式、クラス、インターフェイス、列挙型などを実行するために使用できます。
詳細なドキュメントは、JShellで完全な情報とともに利用できるほか、さまざまなオプションで内部コマンドを使用できます。このドキュメントには、「 / help」という2つのコマンドを使用してアクセスできます。 "と"/? "。JShellのドキュメントは、内部統制に関する情報だけでなく、 Javadocも含まれています。 。
以下のコードスニペットでは、「 / help」を使用して結果を取得できます。 "コマンド。
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 '/help' followed by the name of a command or a subject. | For example '/help /list' or '/help intro'. | | 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
J Shellは、さまざまな既存の内部コマンドを、それらが何をするかを簡単に説明して印刷し、その使用法のより詳細な説明にアクセスします。そのためには、次のコマンドを入力する必要があります: " / help "の後にコマンドの名前が続きます(例:" / set "コマンド)。
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
JShellの戻り値を変更するかどうか(/フィードバックの設定)、この3番目の部分で入力したコマンドを見つける必要があります。 )、デフォルトのエディタを変更します( / set editor )、またはJShellの開始を変更するには( / set start 。
jshell> /help /set feedback | Set the feedback mode describing displayed feedback for entered snippets and commands: | | /set feedback [-retain] <mode> | | Retain the current feedback mode for future sessions: | | /set feedback -retain | | Show the feedback mode and list available modes: | | /set feedback | | Where <mode> is the name of a previously defined feedback mode. | You may use just enough letters to make it unique. | User-defined modes can be added, see '/help /set mode' | | When the -retain option is used, the setting will be used in this and future | runs of the jshell tool. | | The form without <mode> or -retain displays the current feedback mode and available modes.
-
Java 9のJShellでシステムプロパティを取得するにはどうすればよいですか?
JShell はREPL(Read-Evaluate-Print-Loop) 単純なステートメントを実行して評価し、main()メソッドなしで結果を表示するために使用されるツール。 「jshell」と入力するだけで開始できます 「コマンドラインプロンプトで。 System.getProperty()を使用してシステムプロパティを取得する必要があります およびSystem.getProperties() メソッド。 以下のコードスニペットでは、静的を使用して、JShellツールでシステムプロパティを表示できます。 メソッドproperty() システムの クラス。 スニペット-1 jsh
-
Java 9でJavaFXを使用してJShellを実装するにはどうすればよいですか?
JShell サンプル式を実装するために使用されるインタラクティブなツールです。 JavaFXを使用してプログラムでJShellを実装できます アプリケーションの場合、以下にリストされているJavaプログラムにいくつかのパッケージをインポートする必要があります import jdk.jshell.JShell; import jdk.jshell.SnippetEvent; import jdk.jshell.VarSnippet; 以下の例では、サンプルのJavaFXアプリケーションを実装しました。 テキストフィールドにさまざまな値を入力します 「評価」を押します 「」ボタン。対応する