2

我有这段代码用于执行三个线程,其中第二个线程应该在按下 enter 时被中断并打印退出消息:

void input_val()
{
    // DO STUFF
return;
}

void process_val()
{
       // DO STUFF
       try{
        cout << "waiting for ENTER..." << endl;
        boost::this_thread::sleep(boost::posix_time::milliseconds(200));
    }
    catch(boost::thread_interrupted&){
        cout << "exit process thread" << endl;
        return;
    }
    return;
}


void output_val()
{
    // DO STUFF
}

int main()
{
    char key_pressed;

    boost::thread input_thread(boost::bind(&input_val));
    boost::thread process_thread(boost::bind(&process_val));
    boost::thread output_thread(boost::bind(&output_val));

    cin.get(key_pressed);
    process_thread.interrupt();

    input_thread.join();
    process_thread.join();
    output_thread.join();
    return 0;
}

process_thread 在“ENTER”时被中断,但没有打印“退出进程线程消息”。任何人都可以提出问题可能是什么,因为我昨天有一个类似的程序正常运行。提前致谢!

4

1 回答 1

2

运行的线程process_val只休眠了 200 毫秒,所以除非在程序启动后不到 200 毫秒内可以按下某个键,否则该线程已经返回,try/catch 不再有效。如果你将睡眠时间增加到几千毫秒,你应该有时间在它等待的时候按下一个键。

于 2013-09-27T04:15:24.613 回答