标题:关于for与if连用
取消只看楼主
li_danwang
Rank: 4
来 自:鄂州
等 级:业余侠客
帖 子:112
专家分:203
注 册:2010-11-12
结帖率:100%
已结贴  问题点数:10 回复次数:0 
关于for与if连用
for (i=0; i++;)
{
if (condition)
DoSomething();
else
DoOtherthing();
}
// 第二个

if (condition)
{
for (i=0; i++;)
DoSomething();
}
else
{
for (i=0; i++;)
DoOtherthing();
}

他们各自有什么优缺点?
搜索更多相关主题的帖子: 优缺点 
2010-12-04 13:12



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-327869-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.085600 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved