Java基本數據類型 長度和表示範圍

来源:互联网 发布:内乡王登科网络诈骗 编辑:程序博客网 时间:2024/06/06 14:23

java数据类型     字节  表示范围

byte(字节型)     1 -128~127 
short(短整型)    2 -32768~32767 
int(整型)           4 -2147483648~2147483647 
long(长整型)     8 -9223372036854775808 ~ 9223372036854775807 
float(浮点型)    4 -3.4E38~3.4E38 
double(双精度型) 8 -1.7E308~1.7E308 
char(字符型)     2 0~65535 
boolean(布尔型)1 true  or  false

0 0
原创粉丝点击