Java は高レベルのオブジェクト指向コンピュータ プログラミング言語であり、Sun Microsystems が 1995 年に開発しました。Java ベースのアプリケーションは主にバイトコードで実行され、コンピュータ アーキテクチャに関係なく、どの Java 仮想マシンでも実行できます。 James Gosling は 1991 年に Java 言語プロジェクトを開始し、当初は Gosling のオフィスの外にあったオークの木にちなんで「Oak」と名付けられました。
無料ソフトウェア開発コースを始めましょう
Web 開発、プログラミング言語、ソフトウェア テスト、その他
Java には広範なライブラリがあり、対話型で拡張可能で、一般的な操作を計算するための組み込みメソッドが多数含まれています。以下は、さまざまな種類の操作を実行する、前述のチートシート Java コマンドです。
COMMAND | DESCRIPTION |
+ | To display the next memory section (hexdump-like format) |
– | To display the previous memory section (hexdump-like format) |
coreinfo | To display the platform, version information, and command-line arguments |
basicinfo | To display the main basic information |
info class | To display the inheritance chain and data information for a specific class |
info memory | To display and analyze the memory management (tree format) |
info lock | To display the list of locked objects and available monitors |
extra memory | To save a mentioned memory range conversion to a binary file |
heapdump | To generate a heap dump to a file |
info sym | To display a list of available modules |
javaclass | To display a list of Java classes |
javaobject | To display the specific address, the Java object |
javamonitor | To display the specific address java-monitor |
javathread | To display specific Java thread information |
show heapdump | To display the settings of current heap dump values |
show logging | To display the values of current logging settings |
snaptrace | To extract trace buffers to a specified file |
演算子: Java のさまざまな種類の演算子には、比較 (関係) 演算子、代入演算子、論理演算子、ビット演算子、メンバーシップ演算子、およびアイデンティティ演算子があります。さまざまな種類の数値演算子には、int (符号付きおよび符号なし)、long、float、および複素数があります。
比較演算子: Java の基本的な比較演算子については、以下のチートシートを参照してください。
OPERATORS | DESCRIPTION / MEANING |
> | greater than |
< | less than |
>= | greater than or equal |
<= | less than or equal |
== | equal to |
!= | not equal |
SYNTAX | OUTPUT |
void System.out.print(String S) | To print S |
void System.out.println(String S) | To print S followed by a new line |
void System.out.println() | To print a new line |
Java Cheat Sheet で使用される印刷構文を以下に示します。
出力
構文
void System.out.print(String S)
S を印刷するには
void System.out.println(String S)
S の後に改行を印刷するには
テーブル>
void System.out.println()
新しい行を印刷するには
Java のループ演算子は、while、for、およびネストされています。ネストされたループは while、for、do…while などです。さまざまなループ制御ステートメントは、break、 continue、および pass ステートメントです。
識別子:METHOD | DESCRIPTION |
static double abs(double a) | Returns the absolute value of a double value |
static int abs(int a) | Returns the absolute value of an int value |
static float abs(float a) | Returns the absolute value of a float value |
static int max(int a, int b) | Returns the greater of two int value |
static float max(float a, float b) | Returns the greater of two float value |
static long max(long a long b) | Returns the greater of two long value |
static int min(int a, int b) | Returns the smaller of two int value |
static float min(float a float b) | Returns the smaller of two float value |
static long min(long a long b) | Returns the smaller of two long value |
static double random() | Returns a positive double value that is greater than or equal to 0.0 but less than 1.0 |
static double ulp(double d) | Returns the size of an argument ulp |
static double ulp(float f) | Returns the size of an argument ulp |
static double sin(double a) | Returns the hyperbolic sine of a double value |
static double tan(double a) | Returns the trigonometric tangent of an angle |
Java Cheat Sheet は、コマンドライン ウィンドウを使用し、相互に関連するさまざまなメソッドとしてコマンドを実行して実行できます。
Java は使いやすく、その構文は覚えやすく、プログラムのコーディングも簡単です。 Java は、Java をサポートするさまざまなフレームワークやテクノロジを使用した Web 開発テクノロジで使用できます。プロジェクトのニーズの種類、作業時間、その他の議論された側面に基づきます。目的の目標を達成するには Java を使用する必要があります。
以上がチートシート Javaの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。