免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 7341 | 回复: 4
打印 上一主题 下一主题

求c++多线程例子 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-11-26 16:28 |只看该作者 |倒序浏览
哪位老大提供一个c++的多线程测试例子,简单的完整的,能够直接编译通过的,我使用的环境是AIX5.0,小弟刚学C++,边学边测试,谢谢了

论坛徽章:
0
2 [报告]
发表于 2008-11-26 16:59 |只看该作者
自己顶一个

论坛徽章:
1
天蝎座
日期:2013-08-25 10:27:22
3 [报告]
发表于 2008-11-26 17:09 |只看该作者

论坛徽章:
0
4 [报告]
发表于 2008-11-26 17:30 |只看该作者
这两天刚刚写了一个. 功能还好, 基本上可以用啦.


  1. /*
  2. * thread.h
  3. *
  4. *  Created on: 2008-11-25
  5. *      Author: Administrator
  6. */

  7. #ifndef THREAD_H_
  8. #define THREAD_H_

  9. #include <pthread.h>
  10. #include <vector>
  11. #include <map>

  12. namespace x
  13. {
  14. using namespace std;
  15. /**
  16. * 这是一个线程虚基类,编写任何线程时,只要继承thread,并实现其中的纯虚函数run(),
  17. * 然后用start启动即可
  18. */
  19. class Thread
  20. {
  21. public:
  22.     Thread();
  23.     virtual ~Thread();
  24. public:
  25.     enum { THR_JOINABLE = 0, THR_DETACHED  };

  26. //    enum {  THR_STATE_READY = 0, // 就绪状态,在调用线程函数run()之前
  27. //            THR_STATE_RUNNING, // 工作状态,启动run()函数,但未返回
  28. //            THR_STATE_RETURN, // 线程成功返回
  29. //            THR_STATE_ERROR // 线程失败返回
  30. //         };

  31. protected:
  32.     static void* thr_run(void* args);

  33. protected:
  34.     /**
  35.      * 线程方法,继承thread,实现这个run方法即可
  36.      */
  37.     virtual int run() = 0;

  38. public:
  39.     /**
  40.      * 线程启动方法
  41.      */
  42.     int start(int thr_num = 1, int state = Thread::THR_JOINABLE );

  43.     /**
  44.      * 等待所有线程结束
  45.      */
  46.     int wait();

  47.     /**
  48.      * 线程是否可连接
  49.      * @return
  50.      *         1: YES
  51.      *         0: NO
  52.      */
  53.     int joinable();

  54.     /**
  55.      * 本线程对象共有多少个线程在运行
  56.      */
  57.     int thread_count();

  58. private:
  59.     // 线程ID集合
  60.     vector<pthread_t> thrIdList_;

  61.     // 线程属性
  62.     pthread_attr_t thrAttr_;

  63.     // 线程是否可连接
  64.     int joinable_;

  65.     int isThrAttrInit_;

  66. }; // class thread
  67. } // namespace x

  68. #endif /* THREAD_H_ */
复制代码


  1. /*
  2. * thread.cpp
  3. *
  4. *  Created on: 2008-11-25
  5. *      Author: Administrator
  6. */

  7. #include "Thread.h"

  8. namespace x
  9. {

  10.     Thread::Thread():joinable_(PTHREAD_CREATE_JOINABLE), isThrAttrInit_(0)
  11.     {
  12.     }

  13.     Thread::~Thread()
  14.     {
  15.         if( this->isThrAttrInit_ == 1 ) // 如果线程属性对象被成功的设置,则对其释放内存
  16.         {
  17.             if( pthread_attr_destroy(& this->thrAttr_) == 0 )
  18.             {
  19.                 ; // todo
  20.             }
  21.             else
  22.             {
  23.                 ; // todo
  24.             }
  25.         }
  26.     }

  27.     void* Thread::thr_run(void* args)
  28.     {
  29.         int thr_ret = 0;
  30.         Thread *thr_objp = (Thread*) args;

  31.         thr_ret = thr_objp->run();

  32.         if( thr_ret == 0 ) { // 线程正常退出
  33.             ; // todo
  34.         } else { // 返回值为非0,异常退出
  35.             ; // todo
  36.         }
  37.         return (void*)thr_ret;
  38.     }

  39.     int Thread::start(int thr_num, int state)
  40.     {
  41.         int err = 0;

  42.         err = pthread_attr_init(& this->thrAttr_);
  43.         if( err != 0 )        return err;

  44.         if( state == Thread::THR_DETACHED )
  45.         {
  46.             err = pthread_attr_setdetachstate(& this->thrAttr_, PTHREAD_CREATE_DETACHED);
  47.             if( err != 0 )        return err;
  48.             this->joinable_ = PTHREAD_CREATE_DETACHED;
  49.         }
  50.         else
  51.         {
  52.             err = pthread_attr_setdetachstate(& this->thrAttr_, PTHREAD_CREATE_JOINABLE);
  53.             if( err != 0 )        return err;
  54.             this->joinable_ = PTHREAD_CREATE_JOINABLE;
  55.         }

  56.         // 线程属性已经被成功设置
  57.         this->isThrAttrInit_ = 1;

  58.         thr_num = (thr_num > 0) ? thr_num : 1;

  59.         pthread_t tid;
  60.         for(int i = 0; i < thr_num; i++ )
  61.         {
  62.             err = pthread_create(& tid, & this->thrAttr_, thr_run, this);
  63.             // save the thread id
  64.             if( err == 0 )
  65.                 this->thrIdList_.push_back(tid);
  66.         }
  67.         return err;
  68.     }

  69.     int Thread::wait()
  70.     {
  71.         if( this->joinable())
  72.         {// 如果是可连接的,则等待
  73.             int threadCount = thread_count();
  74.             for(int i = 0; i < threadCount; i++ )
  75.             {
  76.                 pthread_join( this->thrIdList_.at(i), NULL);
  77.             }
  78.         }
  79.         return 0;
  80.     }


  81.     int Thread::joinable()
  82.     {
  83.         return this->joinable_ == PTHREAD_CREATE_JOINABLE;
  84.     }

  85.     int Thread::thread_count()
  86.     {
  87.         return this->thrIdList_.size();
  88.     }
  89. }

复制代码

论坛徽章:
0
5 [报告]
发表于 2008-11-26 17:47 |只看该作者
原帖由 stratovarius 于 2008-11-26 17:30 发表
这两天刚刚写了一个. 功能还好, 基本上可以用啦.


/*
* thread.h
*
*  Created on: 2008-11-25
*      Author: Administrator
*/

#ifndef THREAD_H_
#define THREAD_H_

#include
#inclu ...

功能太弱。。。。基本上等于什么也没做。。。。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP