淘先锋技术网

首页 1 2 3 4 5 6 7

Java是一种广泛使用的编程语言,它拥有八种基本的数据类型:byte、short、int、long、float、double、char和boolean。

1. byte类型占用1个字节(8位),范围为-128到127之间的整数。

byte b = 127;

2. short类型占用2个字节(16位),范围为-32768到32767之间的整数。

short s = 32767;

3. int类型占用4个字节(32位),范围为-2147483648到2147483647之间的整数。

int i = 2147483647;

4. long类型占用8个字节(64位),范围为-9223372036854775808到9223372036854775807之间的整数。

long l = 9223372036854775807L;

5. float类型占用4个字节(32位),范围为约-3.4*10^38到3.4*10^38之间。

float f = 3.14f;

6. double类型占用8个字节(64位),范围为约-1.7*10^308到1.7*10^308之间。

double d = 3.14;

7. char类型占用2个字节(16位),表示Unicode字符,例如'A'、'中'、'