0

有没有办法在不使用 Ctrl + C 的情况下打破无限循环?我想在其他程序中实现这样的方法。就像在这个示例程序中一样:

#include <iostream>

int main()
{
     int x = 0;
     for(;;)
         cout << x;
}

有没有办法让 for 循环继续运行,但随时用一些键打破它。我还应该解释我理解使用 break;,但我希望循环继续进行。如果我使用这样的中断条件,for 循环将停止并等待响应。

#include <iostream>

int main()
{
     int x = 0;
     for(;;)
     {
         cout << x;
         if(getch()=='n')
                break;
     }  

}
4

2 回答 2

1

找到一些您希望在遇到时跳出循环的条件,然后使用 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;
}

如果您决定采用线程方法,请小心,因为多线程代码中存在单线程代码中不存在的问题,并且有时它们可​​能非常讨厌。

于 2013-11-14T00:01:55.993 回答
-1

You are looking for continue I think

#include <iostream>

int main()
{
     int x = 0;
     for(;;)
     {
         cout << x;
         if(getch()=='n')
                continue;
     }  

}
于 2013-11-14T00:17:36.953 回答