代码的执行效果

package com20210409;

public class demo04 {
    public static void main(String[] args) {
//
//    //&&  当前的条件不满足,则最后结果一定不满足,后面的条件不再执行
//    // &  不管条件是否满足 所有条件均作判断
//    int x=1,y=1;
//    if(++y==2 && x++ ==2){
//        x=7;
//    }
//    System.out.println("x="+x+" , y="+y);  //2  2


        boolean b=true;
        int a=1;
        if (b=false){
            System.out.println("a");
        }else if(b){
            System.out.println("b");
        }else if (!b){
            System.out.println("c");
        }else
            System.out.println("b");
  }
}

你可能感兴趣的:(代码的执行效果)