Java 是一種高階、物件導向的電腦程式語言,由 Sun Microsystems 於 1995 年開發。基於 Java 的應用程式主要執行為字節碼,字節碼可以在任何 Java 虛擬機器上執行,無論任何電腦體系結構如何。 James Gosling 於 1991 年啟動了 Java 語言項目,最初它被稱為“Oak”,源自 Gosling 辦公室外的一棵橡樹。
開始您的免費軟體開發課程
網頁開發、程式語言、軟體測試及其他
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 和nested。巢狀迴圈有 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中文網其他相關文章!