java 中 for 可以这么用呀...
时间:2010-08-14 来源:chaipenghui
class ForUsageTest {
static boolean foo(char c) {
System.out.print(c);
return true;
}
public static void main(String[] argv) {
int i = 0;
for (foo('A'); foo('B') && (i < 2); foo('C')) {
i++;
foo('D');
}
}
}
小弟不明白,为什么可以这样用,但是如果写成这样就不对了,for(true;true;true)
相关阅读 更多 +