标签:pre 需要 标识 数据类型转换 print style str color span
public class Add{ public static void main(String[] args) { int x = 3; byte y = 4; y = (byte)(x + y); System.out.println(y); } }
大类型赋值给小类型,需要使用强制类型转换,强制类型转换可能会损失精度
强制类型转换的格式
小类型 小类型标识符 = (大类型) 大类型数值
标签:pre 需要 标识 数据类型转换 print style str color span
原文地址:http://www.cnblogs.com/panw3i/p/6322553.html