继续而不是在C ++中的函数内返回`

时间:2013-08-21 16:30:36

标签: c++ c++11 return continue

在C ++中完成一个函数时,使用continue而不是return是否有意义?

void function()
{
  //do something;
  continue; //instead of return
}

1 个答案:

答案 0 :(得分:5)

不,continue只能在whilefordo内使用。