Java는 고급 객체 지향 컴퓨터 프로그래밍 언어로 Sun Microsystems가 1995년에 개발했습니다. Java 기반 애플리케이션은 주로 컴퓨터 아키텍처에 관계없이 모든 Java Virtual Machine에서 실행될 수 있는 바이트코드로 실행됩니다. 제임스 고슬링은 1991년 자바 언어 프로젝트를 시작했는데, 처음에는 고슬링의 사무실 밖에 서 있던 참나무의 이름을 따서 '오크'라고 명명했습니다.
무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
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의 다양한 연산자 유형에는 비교(관계형) 연산자, 할당 연산자, 논리 연산자, 비트 연산자, 멤버십 연산자 및 ID 연산자가 있습니다. 다양한 유형의 숫자 연산자에는 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(문자열 S)
S를 인쇄하려면
void System.out.println(문자열 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 치트 시트는 명령줄 창을 사용하여 서로 관련된 다양한 방법으로 명령을 실행할 수 있습니다.
Java는 사용하기 쉽고 구문도 기억하기 쉽고 프로그램 코딩도 쉽습니다. Java는 Java를 지원하는 다양한 프레임워크와 기술을 사용하여 웹 개발 기술에 사용될 수 있습니다. 프로젝트 요구 유형, 작업 시간 및 기타 논의된 측면을 기준으로 합니다. 원하는 목표를 달성하려면 java를 사용해야 합니다.
위 내용은 치트 시트 자바의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!