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

Sat*_*evi -4 c++ continue return c++11

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

void function()
{
  //do something;
  continue; //instead of return
}
Run Code Online (Sandbox Code Playgroud)

Yu *_*Hao 5

没有,continue只能内部使用while,fordo.