C ++ ReadConsoleInput不能使用boost :: thread

时间:2012-08-10 22:31:23

标签: c++ windows console boost-thread

我创建了一个监听器类,它将在控制器对象上调用on_left_mouse_released等方法。它工作正常,现在我试图让它使用boost :: thread在另一个线程中运行。但是,我似乎做错了什么。我是多线程的新手,所以这很容易就是一个简单的错误。

以下是侦听器类的选定部分:

void Listener::listen()
{
keepListening = true;

while(keepListening)
{
    if(timerEnabled)
    {
        this->CheckForTimerEvent();

        if( !PendingMouseOrKeyEvents()) //readconsoleinput is blocking
            continue;
    }

    if(!keepListening) //could have been changed in a timer event
        break;

    if(!mouseEnabled && !keyboardEnabled)
        continue;

    ReadConsoleInput(hIn, &InRec, 1, &NumRead);


    //see http://msdn.microsoft.com/en-us/library/windows/desktop/ms683499(v=vs.85).aspx
    //for more information on InRec and its submembers

    if(mouseEnabled &&InRec.EventType == MOUSE_EVENT)
    {
        this->ProcessMouseEvent(InRec.Event.MouseEvent);
        cout << "here";
    }
    else if(keyboardEnabled && InRec.EventType == KEY_EVENT)
    {
        this->ProcessKeyEvent(InRec.Event.KeyEvent);
                    cout << "here";
    }
}
}
void Listener::operator()()
{
    listen();
}

在我的main函数中,如果我创建一个名为listener的Listener对象,那么说“listener();” 两个couts都伴随着适当的事件发生。但是,如果我使用“boost :: thread listen(boost :: ref(listener));”相反,没有任何反应。

有谁知道为什么会这样?

1 个答案:

答案 0 :(得分:0)

很可能你已经启动了线程并且在退出测试程序之前忘记等待线程退出。添加

listen.join();

在测试程序结束时。