一.基本数据类型
数据类型 | 占用字节 | 取值范围 |
---|---|---|
Boolean | 1byte | true或者false |
Byte | 1byte=8bit | -128~127 |
Char | 2byte | |
Short | 2byte=16bit | -32768~32767 |
Int | 4byte | -2147483648~2147483647 |
Float | 4byte | 精确到小数点后6六位 |
Long | 8byte | -9223372036854775807~9223372036854775807 |
Double | 8byte | 精确到小数点后15为到16位 |
二.Java包装数据类型
基本数据类型 | 包装数据类型 |
---|---|
boolean | Boolean |
byte | Byte |
char | Charcter |
short | Short |
int | Integer |
float | Float |
long | Long |
double | Double |
网友评论