Java中Long类型转化为Int类型
错误转化
正确转化
Long类型是64位
最小值:-9,223,372,036,854,775,808(-2^63)
最大值: 9,223,372,036,854,775,807(2^63 -1)
Int类型是32位
最小值:-2,147,483,648(-2^31)
最大值:2,147,483,647(2^31 - 1)
注意:要把Long类型的值转化为Int类型的值,首先要强制转化。其次要注意转化的时候会不会溢出。
错误转化
package com.hlq.test; /** * @author helongqiang * @date 2020/5/2 7:00 */ public class Demo01 { public static void main(String[] args){ long num = 100; // 会报错 // int x = num + 2; //System.out.println(x); } }
正确转化
package com.hlq.test; /** * @author helongqiang * @date 2020/5/2 7:42 */ public class Demo02 { public static void main(String[] args){ long num = 100; // 正确转化,但是可能会溢出 int x = (int)num + 2; System.out.println(x); } }