释义 |
执行while循环 以上为机器翻译结果,快速获取精准的人工翻译结果,建议选择有道人工翻译 - 1
So this do while loop immediately breaks out at the point of that check. 所以这个do,while,循环在检查的时候,直接中断了。 - 2
The difference with the do while loop, as the syntax kind of suggests, is that this construct is going to do something no matter what. 作为建议的语法,do, while循环的不同之处,是这个结构不管怎么样,它会做一些事情。 - 3
Continue must be in a loop (e.g., for, do, while). It cannot appear in case constructs. continue一定是在for, do, while这些循环中,而不能在实例构建中出现。
|