arduino编程,如何跳出本次void loop()循环?
当a<255时,跳出本次循环,不执行剩下的代码,然后重新开始voidloop()循环。voidloop(){a=analogRead(A0);if(a<255)conti...
当a < 255时,跳出本次循环,不执行剩下的代码,然后重新开始void loop()循环。
void loop()
{
a=analogRead(A0);
if(a < 255) continue;
……
……
}
直接这样写是不行的,会提示error: continue statement not within a loop.
官网上的解释是:
The continue statement skips the rest of the current iteration of a loop (do, for, or while). It continues by checking the conditional expression of the loop, and proceeding with any subsequent iterations.说明不能直接用continue跳出void loop(),只能跳出do,for,while,于是得在void loop()这个无限循环中再嵌套一个while(1),for(i=2;i<1;i++)之类的无限循环.
void loop()
{
while(1)
{
a=analogRead(A0);
if(a < 255) continue;
……
……
}
}
这样就能达到目的了,然而我觉得这样有点麻烦,还有更好更简单的方法吗?请高手来指点一下。
能用goto语句吗?如果能,该如何使用? 展开
void loop()
{
a=analogRead(A0);
if(a < 255) continue;
……
……
}
直接这样写是不行的,会提示error: continue statement not within a loop.
官网上的解释是:
The continue statement skips the rest of the current iteration of a loop (do, for, or while). It continues by checking the conditional expression of the loop, and proceeding with any subsequent iterations.说明不能直接用continue跳出void loop(),只能跳出do,for,while,于是得在void loop()这个无限循环中再嵌套一个while(1),for(i=2;i<1;i++)之类的无限循环.
void loop()
{
while(1)
{
a=analogRead(A0);
if(a < 255) continue;
……
……
}
}
这样就能达到目的了,然而我觉得这样有点麻烦,还有更好更简单的方法吗?请高手来指点一下。
能用goto语句吗?如果能,该如何使用? 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询