Pergunta

Does it make sense to use continue instead of return, while completing a function in C++?

void function()
{
  //do something;
  continue; //instead of return
}
Foi útil?

Solução

No, continue can be only used inside while, for, or do.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top