我正在使用下面的簡單程序來爲命令行上指定的參數生成睡眠。我們如何中斷主線程
我找不到對應於主線程的boost::thread
對象。使用empt thread_obj
,sleep
正在工作,但boost :: thread對象在我運行程序時不會中斷。
那麼,爲什麼我沒有得到boost::thread
對象的中斷?
#include<iostream>
#include<boost/thread/thread.hpp>
#include<boost/date_time/date.hpp>
using namespace boost;
using namespace std;
boost::thread thread_obj;
boost::thread thread_obj1;
void func(void)
{
char x;
cout << "enter y to interrupt" << endl;
cin >> x;
if(x == 'y')
{
cout << "x = 'y'" << endl;
thread_obj.interrupt();
cout << "thread interrupt" << endl;
}
}
int main(int argc,char **argv)
{
thread_obj1 = boost::thread(&func);
boost::system_time const timeout = boost::get_system_time() + boost::posix_time::seconds(atoi(argv[1]));
try
{
boost::this_thread::sleep(timeout);
} catch(boost::thread_interrupted &)
{
cout <<"thread interrupted" << endl;
}
}
不知道你在用'thread_obj'做什麼:有沒有螺紋附在上面! –
@LightnessRacesinOrbit boost :: Thread_obj僅適用於應用睡眠......是否可以這樣做......? –
不需要。睡在哪個線上?這沒有意義。 –