标签:
整形:byte 8位,short 16位,int32位,long 64位;
浮点型:float 32位 3.14F double 64位(3.14默认为Double类型);
char类型:char;
boolean类型 :boolean;
2. 包装类:
Byte,Integer,Short,Long,Boolean,Character,Float,Double
3. 自动拆箱和装箱:
Integer a = new Integer(2);
List list = new ArrayList();
list.add(a+2);
这里Integer先自动转换为int进行加法运算,然后int再次转换为Integer.
标签:
原文地址:http://www.cnblogs.com/feiyanhz/p/4811859.html