Basic syntax of java
1. Keyword
Definition: A string given a special meaning by the Java language and used for special purposes
Features: All letters in the keyword are lowercase
2. Identifier
Definition: The character sequence used by Java to name various variables, methods, classes and other elements is called an identifier (any place where you can give a name is called an identifier)
Legal rules:
1. Composed of 26 English letters, uppercase and lowercase, 0-9, _ or $
2. Numbers cannot begin with
3 .Keywords or reserved words cannot be used, but keywords and reserved words can be included
4.Java is strictly case-sensitive and has no length limit
5.Identifiers cannot contain spaces
Naming convention:
1. Package name: When composed of multiple words, all letters are lowercase: xxxyyyzzz
2. Class name, interface name: When composed of multiple words, all letters The first letter of the word is capitalized:
Constant names should be in all uppercase letters, and if they consist of multiple words, underscores should be used to connect each word: XXX_YYY_ZZZ 3. Variable Concept: 1. It is a storage area in the memory 2. This area has its own name (variable name) and type (data type) 3. Each variable in java must be declared (defined) first, and then used 4. The data in this area can continue to change within the same type range (for example, declare int i = first 1; then declare i = 2; then the value of i changes from 1 to 2) 5. Variables access this area through variable names Define variable format: Data type variable Name = initialization valueNote:1. The scope of the variable: valid between a pair of { }2. There must be an initialization value (the first time given Variable assignment): For example, int i = 0; If only int m; is used directly, it is an error because the variable is not initialized3. The = in the process of declaring a variable is different from the = in the mathematical sense, in java Indicates assignmentClassification of variables - by data type (except for the 8 basic data types, the others are reference data types)8 basic data types
2. Floating point types: float, double
3. Character type: char
Boolean type: boolean
2.Boolean type data only allows the values true and false, no null (0 or non-0 integers cannot be used to replace true and false) For example: boolean b1 = true; or boolean b1 = false;
Besides the basic types are reference types: for example, String class
Features of reference types:
1. In Java, reference type variables are very similar to C/C pointers. A reference type points to an object, and a variable pointing to an object is a reference variable. Specify a specific type when declaring, like Employee, Puppy, etc. Once a variable is declared, its type cannot be changed.
2. Objects and arrays are reference data types.
3. The default value of all reference types is null.
4. A reference variable can be used to reference any compatible type.
String class:
1. The value null can be assigned to any reference type variable, which is used to indicate that the address saved in this reference variable is empty. The String class belongs to the reference type and can be assigned with null.
String class typically embodies the characteristics of immutable classes. Once a String object is created, its content cannot be changed. The created string will be stored in the data area to ensure that there is only one constant for each string and no multiple copies will be generated. For example: int i0 = 1; int i1 = 1; In this case, two 1 values will be stored in the memory. , and String s0 = "hello"; String s1 = "hello"; In this case, there will only be one "hello" in the memory. Assume that the memory address of "hello" is xxxxxx. When declaring the s0 variable, assign the value "hello" to s0 In fact, the s0 variable refers to the memory address xxxxxx of "hello". When we declare that the variable s1 is also assigned the value "hello", we actually directly reference the existing memory address of "hello" to s1
3. The String class can be spliced with a plus sign, for example: String s3 = "he" "ll" "o"; The output is "hello"
Basic data type conversion
1. Automatic type Conversion: Data types with small capacity are automatically converted to data types with large capacity. Data types are sorted by capacity as follows:
The system will automatically convert all data into the data type with the largest capacity when performing mixed operations on multiple types of data, and then perform calculations
3.byte, short, char, There is no mutual conversion between them. The three of them are first converted to int
4 during calculation. When any basic type value is connected to a string ( ), the basic type value will Automatically converted to string type
Note: 1. Type conversion cannot be performed on boolean type.
2. The object type cannot be converted into an object of an unrelated class.
3. Forced type conversion must be used when converting a large-capacity type into a small-capacity type.
4. The conversion process may cause overflow or loss of precision, for example:
int i =128;
byte b = (byte)i;
Because the byte type is 8 bits and the maximum value is 127, when the int is cast to the byte type, an overflow will occur when the value is 128.
5. The conversion of floating point numbers to integers is obtained by discarding decimals instead of rounding, for example:
(int)23.7 == 23; 45.89f == -45;
6. When there is a series of operations, if a certain part contains a string, then the string will be viewed according to string concatenation in the future, for example:
String str = 1 2 3 "a" 4 5; The printed result is 6a45
Forced type conversion
1. The condition is that the converted data types must be compatible.
2. Format: (type)value type is the data type to be forced to type conversion
int k = 7;
byte b = (byte)k; //The converted data type should be enclosed in parentheses
Generally, strings cannot be directly converted to basic types, but they can be packaged by basic types. class to accomplish this conversion.
The above is the detailed content of What are the knowledge points about keywords in Java?. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
