kevin55

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
 1 /************************************************************************/
 2 /*功能描述: boost thread使用实例                                         */
 3 /*作者    : kernel_main                                                */
 4 /*创建时间: 2014.6.9                                                   */
 5 /************************************************************************/
 6 #include <boost/thread.hpp>
 7 #include <iostream>
 8 #include <stdlib.h>
 9 
10 using namespace boost;
11 
12 void print()
13 {
14     std::cout << "test boost thread" << std::endl;
15 }
16 
17 int main()
18 {
19     boost::thread thrd(&print);
20     thrd.join();
21 
22     ::system("pause");
23     return 0;
24 }
posted on 2014-06-09 22:52  kernel_main  阅读(358)  评论(0编辑  收藏  举报