Die acht grundlegenden Datentypen in Java sind: 1. Ganzzahltyp, einschließlich Byte, Short, Int, Long; 2. Gleitkommatyp, einschließlich Float, Double; 4. Zeichentyp; Boolescher Wert.
Die acht grundlegenden Datentypen in Java:
(empfohlenes Lernen: Java-Einführungsprogramm)
1. Ganzzahltyp
1.byte //字节型 1byte 8位 (-2^7 ~ 2^7 - 1) 例如:byte n = 8; 2.short //短整型 2byte 16位 (-2^15 ~ 2^15 - 1) 例如: short n = 8888; 3.int // 整形 4byte 32位(-2^31 ~ 2^31 - 1) 例如: int n = 88888888; 4.long //长整型 8byte 64位 (-2^63 ~ 2^63 - 1) 例如: long l = 12345678901234567890L;
2. Gleitkommatyp
1.float //单精度 4byte 32位(1.4E - 45 ~ 3.4028235E38)例如:float f = 3.14f; 2.double //双精度 8byte 64位(4.9E - 324 ~ 1.7976931348623157E308) java中小数常量默认为double,如果要给float变量赋值则要加F或f
(Empfohlenes Video-Tutorial: Java-Video-Tutorial3. Zeichentyp
1.char //字符型 2byte 16位(0 ~ 2^16 - 1) 占两个2字节,存储Unicode值 例如: char n = 'A';
4. Boolescher Typ
1.boolean //boolean为布尔基本类型。
Das obige ist der detaillierte Inhalt vonWas sind die acht grundlegenden Datentypen in Java?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!