我创建了一个侦听器类,它将在控制器对象上调用诸如 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();
}
在我的主函数中,如果我创建一个名为 listener 的 Listener 对象,则说“listener();” 这两个 couts 都发生在适当的事件中。但是,如果我使用“boost::thread listen (boost::ref(listener));” 相反,什么也没有发生。
有谁知道这是为什么?