Java教程

JAVA基础语法04

本文主要是介绍JAVA基础语法04,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

JAVA基础语法04

逻辑运算符

//逻辑运算符
public class Demo05 {
    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)); //两个有一个为真,则结果为真
        System.out.println("!(a && b):"+!(a&&b));//如果是真则是假,如果是假则为真

        //短路运算
        int c = 5;
        boolean d = (c<4)&&(c++<4);
        System.out.println(d);
        System.out.println(c);
        //此处逻辑运算时,只要先检测到F,则后面的计算不会运行,c++则不会起效还是5

    }
}

位运算

public class Demo06 {
    public static void main(String[] args) {
        /*
        A = 0011 1100
        B = 0000 1101

        A&B 0000 1100  都是1,为1
        A|B 0011 1101  有一个1,为1
        A^B 0011 0001  相同则是0
        ~B 非A即B 1111 0010

        2*8 = 16  2*2*2
        <<   *2
        >>   /2   左移右移

         */

        System.out.println(2<<3);//2<<3你可以理解为2乘以2的三次方
    }
}

字符串连接符 扩展赋值运算符

public class Demo07 {
    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); //+号与字符串类型string连接,后面的操作数也会转换为string进行连接
        System.out.println(a+b+""); //运算顺序从左到右

    }
}

条件运算符

//三元运算符
public class Demo08 {
    public static void main(String[] args) {
        // x ? y : z
        //如果x==true,则结果为y,否则结果为z

        int score = 80;
        String type = score < 60 ?"不及格":"及格";//更精简 ,后面也有if的写法
        //"及格"和“不及格”都是字符串,要用String类型, type就是一个类名,这个可以随便定义,比如String str
        System.out.println(type);
    }
}
这篇关于JAVA基础语法04的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!