一、写在前面
为什么要记录这个随笔呢,主要是因为老是把short类型遗忘。
二、Java的八种基本数据类型
1.四种整数类型(byte、short、int、long):
byte:8位、有符号。最小值是 -128(-2^7)、最大值是 127(2^7-1)、默认值是 0;byte a = 100
short:16位、有符号。最小值是 -32768(-2^15)、最大值是 32767(2^15 - 1)、默认值是 0;short s = 1000
int:32位、有符号。最小值是 -2,147,483,648(-2^31)、最大值是 2,147,483,647(2^31 - 1)、默认值是 0;int n =100000
long:64位、有符号。最小值是 -9,223,372,036,854,775,808(-2^63)、最大值是 9,223,372,036,854,775,807(2^63 -1)、默认值是 0L;long a = 100000L
2.两种浮点数类型(float、double):
float:单精度、32位。默认值是 0.0f;float f = 234.5f
double:双精度、64位。浮点数的默认类型为double类型、默认值是 0.0d;double d1 = 123.4
3.一种字符类型(char):
char:16位。最小值是 \u0000(即为0)、最大值是 \uffff(即为65,535)、char 数据类型可以储存任何字符;char letter = 'A'
4.一种布尔类型(boolean):
true 真 和 false 假 。默认值是 false;boolean flg = true