基本数据类型boolean,char,byte,short,int,long,float,double 和引用类型,如String
int类型取值范围
int占4个字节
因为java实现了多平台的运行,所以采用了32位字符为一个int类型;java中int是32位,数值范围长度是2的32次方。java中没有unsign数值的概念,因此正数和负数各占一半。
System.out.println(Integer.MAX_VALUE);
System.out.println(Integer.MIN_VALUE);
// 2147483647
// -2147483648
-2^31-1~ -2^31