java基本数据类型之间赋值与运算归纳
java基本数据类型之间赋值与运算归纳前言:面对“byte b1=3;byte b2=7;byte b=b1+b2;”报错,而“int i1=3;int i2=7;int i=i1+i2;”不报错,进
java基本数据类型之间赋值与运算归纳