java for的执行顺序

例如:

public        class Test{

 public static void  main(String[] args){
            int x=1;

           for(System.out.println("a");x<3;System.out.println("c")){

System.out.println("d");

                      x++;

          }

}

输出结果是:a d c d c

由此可以看出,先是输出a,,然后比较x<3,进入for循环体内部,输出c.在判断x=2时,进入循环体,输出d,之后输出c

你可能感兴趣的:(for的执行顺序)