摘要: 今天遇到一题目:public class Test { public static boolean p(char a){ System.out.println(a); return true; } public static void main(String[] args) { int i = 0; for(p('a'); p('b') && i < 2; p('c')){ i ++; System.out.println('d'); } }}运行结... 阅读全文
posted @ 2012-08-24 18:55 垚淼 阅读(465) 评论(1) 推荐(0) 编辑