JAVA的数据类型:byte\short\int\long\double在计算时,会自动把低精度转换为高精度。
字符串+别的数据类型,会自动转化为字符串。
package Number;
public class Calculate {
public static void main(String[] args) {
byte b = 10;
short s = 10;
int i = 10;
long l = 10l;
double d = 10;
System.out.println(“这些数相加=” + (b+s+i+l+d));