码迷,mamicode.com
首页 > 其他好文 > 详细

类型转换

时间:2021-06-10 17:53:43      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:容量   contain   end   png   dem   out   ===   nbsp   span   

 

类型转换

 

技术图片

 

 

public class Demo02 {
   public static void main(String[] args) {
       //强制转换   (类型)变量名 高-->低
       int i = 128;
       byte b = (byte) i;//内存溢出
       System.out.println(i);
       System.out.println(b);
       System.out.println("============");
       //自动转换 低-->高
       int i2 = 128;
       double b2 = (byte) i;
       System.out.println(i2);
       System.out.println(b2);
?
       /*
       注意点:
       1.不能对布尔值进行转换
       2.不能把对象类型转换成不相关的东西
       3.在把高容量转换到低容量的时候,强制转换
       4.转换的时候可能存在内存溢出,或者精度问题*/
       System.out.println("============");
?
?
?
       //操作大数的时候,注意溢出的问题
       //JDK7新特性,数字之间可以用下划线分割
       int money = 10_0000_0000;
       int years = 20;
       int total = money*years;
       System.out.println(total);//-1474836480,计算的时候溢出了
       long total2 = money*years;
       System.out.println(total2);//-1474836480,默认是int,转换之前就已经存在问题
       long total3 = money*((long)years);//先把一个数转换为long
       System.out.println(total3);
?
?
?
  }
}
?

 有问题欢迎加qq664474618,一起交流,一起进步!

 

 

 

 

 

 

 

 

类型转换

标签:容量   contain   end   png   dem   out   ===   nbsp   span   

原文地址:https://www.cnblogs.com/qq664474618/p/14868447.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!