基本数据类型和包装类
作者:互联网
int 最大值21亿多,默认值0,integer 默认值null
short 最大值32768
short = (short)int //需要强转
int = short; //不需要强转
int + short = int
int == Integer //true
Integer==Integer // Integer<128:true Integer>128:false
short + short = int 会转为Int操作,结果为int
short += 1 正确,会隐式强制, short = short+1报错
标签:基本,强转,short,包装,最大值,数据类型,int,Integer,默认值 来源: https://www.cnblogs.com/xiaolbk/p/11963919.html