java for语句执行顺序

public class test{   

  public static void main(String[] args) {  
        int i=0;  
        for(printChar('A');printChar('B')&&(i<2);printChar('C')){  
            i++;  
            printChar('D');  
            System.out.println("====================");  
        }  
    }  
    public static boolean printChar(char c){  
        System.out.println(c);  
        return true;  
    }

}

posted @ 2016-03-30 17:25  songjinduo  阅读(652)  评论(0编辑  收藏  举报