Java中有8種基本數據類型,分為三類:整數型、浮點型和字符型。其中整數型有四種基本類型:byte(1個字節)、short(2個字節)、int(4個字節)和long(8個字節);浮點型有兩種基本類型:float(4個字節)和double(8個字節);字符型有一種基本類型:char(2個字節)。除此之外,還有一種基本類型:boolean,占用1個字節。
public class DataTypesExample { public static void main(String[] args) { byte a = 127; short b = 32000; int c = 2147483647; long d = 9223372036854775807L; float e = 3.14f; double f = 3.14159265358979323846d; char g = 'a'; boolean h = true; System.out.println("Byte: " + a); System.out.println("Short: " + b); System.out.println("Int: " + c); System.out.println("Long: " + d); System.out.println("Float: " + e); System.out.println("Double: " + f); System.out.println("Char: " + g); System.out.println("Boolean: " + h); } }
可以通過使用這些基本類型的變量來存儲數字、字符和布爾值?;绢愋秃退鼈兊淖止濋L度可以在不同的平臺和系統中保持一致,這是Java跨平臺的重要特性之一。此外,Java還提供了包裝器類(如Integer、Float等)來以對象的形式表示這些基本類型。