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中文网其他相关文章!