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);
}
}
数据向下强转可能会损失精度
上一篇
下一篇