标签:lang 类型 system 编译 code 错误 print class 基本数据
//byte y = 128;编译错误
byte j = 127;//编译通过
byte x = (byte)(127+1);//编译通过
byte g = 1+1;//编译通过
//byte h = 139+1;编译错误
short i1 = 127;
System.out.println(j==i1); //true
标签:lang 类型 system 编译 code 错误 print class 基本数据
原文地址:https://www.cnblogs.com/a542592213/p/14504859.html