c语言替代goto语句的办法
时间:2010-09-26 来源:afa2010
教c语言的书中都不建议用goto语句,但是有一部分同学还是觉得可以用,我觉得是可以用,但是代码是要给别人看的,别人看到goto语句可不好受,最好还是换成这种方法。
goto语句:
tryagain: int res = doSomething(); //...... if (res < 0) { goto tryagain; } else{ doSomething2(); }
替代方法,用do{} while(0)替代:
do{ int res = doSomething(); //...... if (res < 0) { continue; } else{ doSomething2(); } }while(0);
还有这种goto:
int res = doSomething(); //...... if (res < 0) { goto errorOccur; } else{ doSomething2(); } errorOccur: doThing();
换成这种:
do{ int res = doSomething(); //...... if (res < 0) { break; } else{ doSomething2(); } }while(0); doThing();
为什么博客园没有C语言的版块???
相关阅读 更多 +