For循环

    static boolean foo(char c) {
        System.out.println(c);
        return true;
    }

    public static void main(String[] args) {
        int i = 0;
        for (foo('A'); foo('B') && (i < 2); foo('C')) {
            i++;
            foo('D');
        }
    }
ABDCBDCB

 

posted @ 2022-11-16 15:27  霍根施拉格  阅读(61)  评论(0)    收藏  举报