• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C++boostthread学习(一)

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

 

C++代码  
  1. #include <boost/thread.hpp>  
  2. #include <boost/thread/mutex.hpp>  
  3.   
  4. #include <iostream>  
  5.   
  6. boost::mutex io_mutex;  
  7.   
  8. using namespace std;  
  9.   
  10. void wait(int seconds)  
  11. {  
  12. boost::this_thread::sleep(boost::posix_time::seconds(seconds));  
  13. }  
  14.   
  15. void interruptedThread()  
  16. {  
  17.     try  
  18.     {  
  19.         for (int i = 0; i < 5; i++)  
  20.         {  
  21.             wait(1);  
  22.             cout << i << endl;  
  23.         }  
  24.     }  
  25.     catch (boost::thread_interrupted&)  
  26.     {  
  27.         cout << "thread_interrupted exception happened";  
  28.     }  
  29. }  
  30.   
  31. void testInteruptedThread()  
  32. {  
  33.     boost::thread t(interruptedThread);  
  34.     wait(3);  
  35.     t.interrupt();  
  36.     t.join();  
  37. }  
  38.   
  39. int main(int argc, char* argv[])  
  40. {  
  41.     testInteruptedThread();  
  42.     return 0;  
  43. }  

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#序列化和反序列发布时间:2022-07-13
下一篇:
C#利用键值对取代Switch...Case语句发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap