找到一些您希望在遇到时跳出循环的条件,然后使用 break 关键字:
#include <iostream>
int main()
{
int x = 0;
for(;;)
cout << x;
if(/* break condition*/){
break;
}
}
通过检测用户的特定键盘输入,没有什么能阻止您实现中断条件。
编辑:从您编辑的问题看来,您希望循环一直继续运行,而不是停止等待用户输入。我能想到的唯一方法是生成一个新线程来侦听用户输入,该输入会更改在主线程的中断条件中检测到的变量。
如果您可以访问 c++11 和新的线程库,您可以执行以下操作:
#include <iostream>
#include <thread>
bool break_condition = false;
void looper(){
for(;;){
std::cout << "loop running" << std::endl;
if(break_condition){
break;
}
}
}
void user_input(){
if(std::cin.get()=='n'){
break_condition = true;
}
}
int main(){
//create a thread for the loop and one for listening for input
std::thread loop_thread(looper);
std::thread user_input_thread(user_input);
//synchronize threads
loop_thread.join();
user_input_thread.join();
std::cout << "loop successfully broken out of" << std::endl;
return 0;
}
如果您决定采用线程方法,请小心,因为多线程代码中存在单线程代码中不存在的问题,并且有时它们可能非常讨厌。