美文网首页
Java中关于'&&'、'||'混合运算优先级问题

Java中关于'&&'、'||'混合运算优先级问题

作者: 王裕杰 | 来源:发表于2019-03-26 23:18 被阅读0次

    结论:先进行'&&'运算,在进行'||'运算

    package com.per.sdg.operator;
    /**
     * 结论:先进行'&&'运算,在进行'||'运算
     * @author sundg
     *
     */
    public class AndOrDemo {
        public static void main(String[] args) {
            int a=1;
            int b=3;
            int c=5;
            boolean d=true;
            System.out.println(a>b||c>b&&d);//==>F||T&&T==>T
            System.err.println(b>a||a>c&&d);//==>T||F&&T==>T
            System.out.println(a>b||c>b&&false);//==>F||T&&F==>F
            System.out.println(b>a||c>b&&false);//==>T||T&&F==>T
            
        }
    }
    

    相关文章

      网友评论

          本文标题:Java中关于'&&'、'||'混合运算优先级问题

          本文链接:https://www.haomeiwen.com/subject/cwbovqtx.html