-4

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

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

1 回答 1

6

不可以,continue只能在while, for, 或中使用do

于 2013-08-21T16:32:13.930 回答