码迷,mamicode.com
首页 > 编程语言 > 详细

java 运算符++的练习

时间:2018-08-09 17:40:38      阅读:146      评论:0      收藏:0      [点我收藏+]

标签: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会损失精度
    
    
    
    }
}

 

java 运算符++的练习

标签:rgs   void   size   code   结果   一个   style   精度   ++   

原文地址:https://www.cnblogs.com/jingcaibin/p/9449401.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!