标签:rgs void size code 结果 一个 style 精度 ++
第一个练习:
public class Demo1{ public static void main (String []args ){ int a = 10; int b = 10; int c = 10; a = b++; //a = 10,b = 11 c = --a; //a = 9 ,c = 9 b = ++a; //a = 10,b = 10 a = c--; //a = 9 ,c = 8 System.out.println("a="+a+",b="+b+",c="+c); } }
第二个练习:
public class Demo1{ public static void main (String []args ){ int x = 4; // 4 6 10 int y =(x++)+(++x)+(x*10); System.out.println("x="+x+",y="+y); //输出x = 6 y = 60 } }
第三个练习:
public class Demo1{ public static void main (String []args ){ byte b = 10; b++; //b = (byte)(b+1) b = b + 1; //会报错 //当byte与int进行混合运算的时候, 会提升int类型, 两个int相加的结果还是int, 赋值给byte会损失精度 } }
标签:rgs void size code 结果 一个 style 精度 ++
原文地址:https://www.cnblogs.com/jingcaibin/p/9449401.html