首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2EE开发 >

大神帮忙看下这段代码解决办法

2013-09-05 
大神帮忙看下这段代码public class Test {static boolean foo(char c) {System.out.print(c)return true

大神帮忙看下这段代码
public class Test {
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');
 }  
 }  
}  
输出结果ABDCBDCB
为什么
[解决办法]
for(A;B;C)
A:初始化,只执行一次。
B:循环退出判断,每次循环都会判断。
C:每次循环完后执行。

热点排行