Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果引入了正确的文本,我需要找到一种方法来停止循环/循环,就好像多个任务正在运行一样。
有谁能帮助我吗?
如果您处于循环中,您可以使用break;.
break;
for (int i = 0; i < someLength; i++) { if (someText == someotherText) { break; } }
这只会跳出当前循环 - 也就是说,它“终止最近的封闭循环” - 请注意,所以如果你处于嵌套循环中,它将“落入”下一个循环并继续该循环。