首页 > 编程语言 > 详细

JAVA 基本运算符

时间:2021-05-02 16:41:16      阅读:25      评论:0      收藏:0      [点我收藏+]

基本运算符

 技术分享图片

 a++,++a 的区别

public class a5 {
    public static void main(String[] args) {
        int a = 100;
        int b = a++;
        int c = ++a;
        System.out.println(a);
        System.out.println(b);
        System.out.println(c);
        double pow = Math.pow(3,2);
        System.out.println(pow);

    }
}

  

 

 && 与(and),|| 或(or ), !(非)

 

public class a6 {
    public static void main(String[] args) {
        // 与(and )     或(or)   非(取反)
         boolean a = true;
        boolean b = false;

        System.out.println("a&&b:"+(a&&b));     //逻辑与运算:两个变量都为真,结果才为true
        System.out.println("a|| b:"+(a||b));    //逻辑或运算:两个变量都为假,结果才为false
        System.out.println("!(a|| b):"+!(a||b)); //非运算:如果为真,则变为假,如果为假则变为真

        /*     a&&b:false
               a|| b:true
               !(a|| b):false

                Process finished with exit code 0
        */
    }
}

  

 位运算符:<<  , >> , &  ,  |  ,  ^  ,   ~,

 

public class a7 {
    public static void main(String[] args) {
       /*
         a  = 0011 1100
         b  = 0000 1101
         ---------------------------------
          0 为 假, 1 为真

         a & b = 0000 1100     与:a,b都为真才为真, 即a,b都为1,才为真
         a | b = 0011 1101     或:a,b都为假才为假, 即a,b都为0,才为假
         a ^ b = 0011 0001     异或:相同为0,不同为1
            ~b = 1111 0010     非:0——》1, 1--》0
            -----------------------------------------

           位运算:效率极高
           <<  *2;
           >>  /2;

          0000 0000   0
          0000 0001   1
          0000 0010   2
          0000 0011   3
          0000 0100   4
          0000 0101   5
          0000 0110   6

          0000 1000   8
          0001 0000   16
        */

    }

}

  

a+=b;  a-=b; 

public class a8 {
    public static void main(String[] args) {
        int a = 10;
        int b = 20;

        a +=b;  //a=a+b;
        a -=b;  //a=a-b;

        System.out.println(a);

        //字符串连接符  +, String
        System.out.println(""+a+b);    //字符串在前,a+b 为拼接起来:1020
        System.out.println(a+b+"");    //字符串在后,a+b  输出前面的a+b的值
    /*
      10
      1020
      30
  */


    }
}

  

三元运算符:  x  ? y : z     如果z为true,则结果为y,否则为z

 

public class a9 {
    //三元运算符
    public static void main(String[] args) {


        //  x ? y : z
        // 如果为true,则结果为y,否则为z

        int score = 30;
        String sc = score < 60 ? "不及格" :"及格";
        System.out.println(sc);
    }
}

  

JAVA 基本运算符

原文:https://www.cnblogs.com/chengmengdui/p/14725694.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!