编程语言中有八个基本数据类型分为四类:
逻辑类 boolean 有两种状态:true或false
文类类 char 表示单个字符,一个char代表-bit无符号的Unicode字符
整数类 byte, short, int, long
byte 8bits -128 to -127
short 16bits -32768 to 32767
int 32bits -2147483648 to 2147483647
long 64bits -9223372036854775808 to 7223372036854775808
浮点类 float 和 double
float 32bits -2147483648 to 2147483647
double 64bits -9223372036854775808 to 7223372036854775808