我在一个函数中创建了一个线程,在另一个函数中,我想停止这个线程。我试过这样:
class Server
{
private:
boost::thread* mPtrThread;
...
public:
void createNewThread()
{
boost::thread t(...);
mPtrThread = &t;
}
void stopThread()
{
mPtrThread->interrupt();
}
}
但这不起作用。我怎么能停止线程?