Do...While...代替Goto

Goto是各种规范中都保留的关键字,却都不提倡使用的.
有时可以用Do...While...来代替Goto
do
{
   if (someCondition)
   {
      break;
   }
}
while(0);
Label1:DoOtherThing
这个相当于
if  (someCondition)
{
   goto:Label1;
}
posted @ 2007-06-16 17:26  好好学习,天天进步  阅读(462)  评论(0编辑  收藏  举报