其他分享
首页 > 其他分享> > 类型转换

类型转换

作者:互联网

 

public class leixing {
    public static void main(String[] args) {
        int i =128;
        byte a = (byte) i;//内存溢出!
        //强制转换 (类型)变量名 高--低
        int b = 129;
        double c = b;
        System.out.println(b);
        System.out.println(c);//自动转换 低--高
        /*
        1.不能对布尔值进行转换
        2.不能把对象类型转换为不相干的类型
        3.把高容量的转换为低容量,强制转换
        4.存在内存溢出,或者精度问题!
         */
    }
}
public class zhuanhuan {
    public static void main(String[] args) {
        //操作比较大的数的时候,注意溢出问题
        //JDK7新特性,数字之间可以用下划线分割
        int a =10_0000_0000;
        int years = 20;
        int c = a*years;//-1474836480,计算时溢出了!
        System.out.println(c);
        long d = a*years;//默认是int 转换之前就已经出问题了
        //解决办法
        long e = a*(long)years;//先把一个数据转换为long
        System.out.println(e);
    }
}

 

标签:类型转换,int,System,long,years,public,out
来源: https://www.cnblogs.com/xu529/p/16495279.html