博客已持续运行3482天
人们总是想离家越走越远却发现身后只剩家人...
进入博客
不要停下脚步哪怕前方没有光
2.8
2017
Day2 笔记 数据类型转换之 隐式转换与强制转换

class Demo3_DataTypeConversion {                  //Conversion转换.
 public static void main(String[] args) {
  //数据类型转换之隐式转换

  /*
  int x =3;
  byte b =4;

  x=x+b;

  Syetem.out.println(x);
  
  */


  ////数据类型转换之强制转换
  int x =3;
  byte b =4;
  
  b=(byte)(x+b);
  System.out.println(b);
 }
}

 

数据向下强转可能会损失精度

 

上一篇
写评论
昵称: 主页: 邮箱:
回到顶部
Powered by 顾羽宸. Written by . 浙icp备87656888号
在路上...     29.52ms