int和long怎么转换16位

更新时间:01-24 教程 由 颜初 分享

int和long怎么转换16位?

java5.0提供自动装箱拆箱,Integer与int不需强转,程序会自动转换,Long和Long也是一样 所以,可以这么干 Long l1 = 100L; long l2 = l1; int i1 = (int)l2; Integer i2 = i1; 另一种根据Integer的api有Integer.valueOf()和new Integer();

声明:关于《int和long怎么转换16位》以上内容仅供参考,若您的权利被侵害,请联系13825271@qq.com
本文网址:http://www.25820.com/tutorial/14_2197166.html