`

Linux下面实现C++向对象多线程

阅读更多
/*
* Thread.h
*
*  Created on: 2008-10-13
*      Author: root
*/
#ifndef THREAD_H_
#define THREAD_H_
#include <unistd.h>
#include <pthread.h>
class Runnable
{
public:
//运行实体
virtual void run() = 0;
};
//线程类
class Thread: public Runnable
{
private:
//线程初始化号
static int thread_init_number;
//当前线程初始化序号
int current_thread_init_number;
//线程体
Runnable *target;
//当前线程的线程ID
pthread_t tid;
//线程的状态
int thread_status;
//线程属性
pthread_attr_t attr;
//线程优先级
sched_param param;
//获取执行方法的指针
static void* run0(void* pVoid);
//内部执行方法
void* run1();
//获取线程序号
static int get_next_thread_num();
public:
//线程的状态-新建
static const int THREAD_STATUS_NEW = 0;
//线程的状态-正在运行
static const int THREAD_STATUS_RUNNING = 1;
//线程的状态-运行结束
static const int THREAD_STATUS_EXIT = -1;
//构造函数
Thread();
//构造函数
Thread(Runnable *target);
//析构
~Thread();
//线程的运行体
void run();
//开始执行线程
bool start();
//获取线程状态
int get_state();
//等待线程直至退出
void join();
//等待线程退出或者超时
void join(unsigned long millis_time);
//比较两个线程时候相同,通过current_thread_init_number判断
bool operator ==(const Thread* other_pthread);
//获取this线程ID
pthread_t get_thread_id();
//获取当前线程ID
static pthread_t get_current_thread_id();
//当前线程是否和某个线程相等,通过tid判断
static bool is_equals(Thread* iTarget);
//设置线程的类型:绑定/非绑定
void set_thread_scope(bool isSystem);
//获取线程的类型:绑定/非绑定
bool get_thread_scope();
//设置线程的优先级,1-99,其中99为实时,意外的为普通
void set_thread_priority(int priority);
//获取线程的优先级
int get_thread_priority();
};
int Thread::thread_init_number = 1;
inline int Thread::get_next_thread_num()
{
return thread_init_number++;
}
void* Thread::run0(void* pVoid)
{
Thread* p = (Thread*) pVoid;
p->run1();
return p;
}
void* Thread::run1()
{
thread_status = THREAD_STATUS_RUNNING;
tid = pthread_self();
run();
thread_status = THREAD_STATUS_EXIT;
tid = 0;
pthread_exit(NULL);
}
void Thread::run()
{
if (target != NULL)
{
  (*target).run();
}
}
Thread::Thread()
{
tid = 0;
thread_status = THREAD_STATUS_NEW;
current_thread_init_number = get_next_thread_num();
pthread_attr_init(&attr);
}
Thread::Thread(Runnable *iTarget)
{
target = iTarget;
tid = 0;
thread_status = THREAD_STATUS_NEW;
current_thread_init_number = get_next_thread_num();
pthread_attr_init(&attr);
}
Thread::~Thread()
{
pthread_attr_destroy(&attr);
}
bool Thread::start()
{
return pthread_create(&tid, &attr, run0, this);
}
inline pthread_t Thread::get_current_thread_id()
{
return pthread_self();
}
inline pthread_t Thread::get_thread_id()
{
return tid;
}
inline int Thread::get_state()
{
return thread_status;
}
void Thread::join()
{
if (tid > 0)
{
  pthread_join(tid,NULL);
}
}
void Thread::join(unsigned long millis_time)
{
if (tid == 0)
{
  return;
}
if (millis_time == 0)
{
  join();
}
else
{
  unsigned long k = 0;
  while (thread_status != THREAD_STATUS_EXIT && k <= millis_time)
  {
   usleep(100);
   k++;
  }
}
}
bool Thread::operator ==(const Thread* other_pthread)
{
if(other_pthread==NULL)
{
  return false;
}if(current_thread_init_number==(*other_pthread).current_thread_init_number)
{
  return true;
}
return false;
}
bool Thread::is_equals(Thread* iTarget)
{
if (iTarget == NULL)
{
  return false;
}
return pthread_self() == iTarget->tid;
}
void Thread::set_thread_scope(bool isSystem)
{
if (isSystem)
{
  pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM);
}
else
{
  pthread_attr_setscope(&attr, PTHREAD_SCOPE_PROCESS);
}
}
void Thread::set_thread_priority(int priority)
{
pthread_attr_getschedparam(&attr,&param);
param.__sched_priority = priority;
pthread_attr_setschedparam(&attr,&param);
}
int Thread::get_thread_priority(){
pthread_attr_getschedparam(&attr,&param);
return param.__sched_priority;
}
#endif /* THREAD_H_ */

以为newmain.cpp代码
/*
* newmain.cpp
*
*  Created on: 2008-10-13
*      Author: root
*/
#include "Thread.h"
#include <iostream>
class MutilThread: public Thread
{
public:
Thread* th1;
Thread* th2;
void Test()
{
  th1 = new Thread(this);
  th1->set_thread_priority(90);
  th2 = new Thread(this);
  start();
  th1->start();
  th2->start();
  th1->join();
  th2->join();
}
void run()
{
  if (Thread::is_equals(th1))
  {
   int number = 100;
   for (int i = 0; i < 10; i++)
   {
    std::cout << "this thread1 number is: " << number++
      << std::endl;
    std::cout << "\t pid is: " << getpid() << " tid is "
      << get_current_thread_id() << std::endl;
    sleep(1);
   }
  }
  else if (Thread::is_equals(th2))
  {
   int number = 200;
   for (int i = 0; i < 10; i++)
   {
    std::cout << "this is thread2 number is: " << number++
      << std::endl;
    std::cout << "\t pid is: " << getpid() << " tid is "
      << get_current_thread_id() << std::endl;
    sleep(1);
   }
  }
  else if (Thread::is_equals(this))
  {
   int number = 300;
   for (int i = 0; i < 10; i++)
   {
    std::cout << "this is thread0 number is: " << number++
      << std::endl;
    std::cout << "\t pid is: " << getpid() << " tid is "
      << get_current_thread_id() << std::endl;
    sleep(1);
   }
  }
}
};
int main(int argc, char **argv) {
bool ret;
MutilThread *mt;
mt = new MutilThread();
mt->Test();
return (EXIT_SUCCESS);
}

 

分享到:
评论

相关推荐

    《c++面向对象多线程编程》源代码.zip

    《C++面向对象多线程编程》是一本深入探讨C++在多线程环境下的编程实践的书籍。源代码.zip文件包含了与书中的讲解相对应的示例代码,旨在帮助读者更好地理解和应用所学知识。这里我们将详细解析C++中的面向对象编程...

    socket linux c++ 多线程3

    "VC多线程编程.CHM"可能包含有关在Windows环境下使用Visual C++进行多线程编程的信息,虽然与Linux环境不同,但理解不同的操作系统下的线程实现有助于跨平台开发。 另外,"第8章_Socket编程初步.ppt"可能包含关于...

    C++面向对象多线程编程.part1.rar

    本书基于windows和unix like(unix及linux等类unix),从面向对象的角度深入讨论了多线程实现以及应该注意的问题,确实是一本初学c++或正想向多线程或者说跨平台方向发展的程序员学习的好书。

    C++面向对象多线程编程(多操作系统版)

    本书基于windows和unix like(unix及linux等类unix),从面向对象的角度深入讨论了多线程实现以及应该注意的问题,确实是一本初学c++或正想向多线程或者说跨平台方向发展的程序员学习的好书。

    Linux多线程服务端编程:使用muduo C++网络库

    《Linux多线程服务端编程:使用muduo C++网络库》主要讲述采用现代C++在x86-64 Linux上编写多线程TCP网络服务程序的主流常规技术,重点讲解一种适应性较强的多线程服务器的编程模型,即one loop per thread。...

    C++多线程入门.pdf

    2. C++标准库中多线程的支持:文档中的“Thread.h”和“Create.h”头文件表明在C++中可以通过自定义类和继承来实现线程。这些头文件中定义了Thread类,它可能包括了启动、停止、睡眠、分离和等待线程等方法。 3. ...

    Linux C/C++线程基类源代码

    总结来说,这个“Linux C/C++线程基类”源代码项目提供了一个便捷的线程管理框架,使得在Linux环境下使用C++进行多线程编程变得更加简单和直观。通过理解和利用这个基类,开发者可以专注于业务逻辑,而无需关心底层...

    Linux下面C++实现的threadpool代码

    在Linux系统中,C++实现的线程池是一种优化多线程编程的技术,它通过预先创建一组线程,而不是在需要时才动态创建,从而提高了程序的效率和响应速度。线程池的主要思想是减少线程的创建和销毁开销,提供任务调度的...

    C++类中创建多线程实现本地和远程打印

    在C++编程中,创建多线程是一种常见的方式,用于实现并发执行多个任务,比如这里的本地和远程打印。本示例中的代码可能涉及到以下几个关键知识点: 1. **多线程**:C++11及更高版本引入了`std::thread`库来支持线程...

    C++多线程入门[整理].pdf

    C++作为一门面向对象的编程语言,提供了对多线程编程的支持。本文将从基本概念开始,介绍多线程编程的基本概念、线程的创建、线程状态、线程运行环境、线程类定义等内容,并提供了相关的示例代码。 一、多线程编程...

    Linux 下多线程编程完成矩阵乘法C++源码

    在`multiThread_linux.txt`文件中,你可以找到详细的C++代码示例,它展示了如何将上述步骤应用到实际的多线程矩阵乘法实现中。代码可能会包含以下关键部分: - 使用`std::thread`创建线程。 - 定义一个计算矩阵乘...

    开源的win32平台c++多线程开发包

    在描述中提到的“是用c++编写的开源的多线程开发包,用于win32平台,简单易用”,这表明该开发包已经实现了C++接口,使得开发者能够利用C++的强大特性和模板机制来创建多线程程序。同时,它的易用性意味着它可能提供...

    ACE多线程服务器C++实现

    **ACE多线程服务器C++实现** ACE(Adaptive Communication Environment)是一个强大的、跨平台的C++库,它提供了一套全面的网络编程接口,包括TCP/IP、UDP、Unix域套接字等通信协议,以及多线程、定时器、事件调度...

    linux下QT开发的多窗口多线程程序

    本项目着重讲解如何在Linux系统下利用Qt实现一个具有多窗口和多线程功能的程序,以及如何在这些线程间传递数据。 首先,我们需要理解Qt中的窗口(Window)概念。在Qt中,窗口通常由`QWidget`类及其子类如`...

    linux下的c++编程实验

    4. **进程与线程**:Linux提供丰富的进程和线程管理API,如`fork()`创建子进程,`exec()`系列函数执行新程序,`pthread_create()`创建线程,以及同步原语如`mutex`和`condition_variable`。 5. **信号处理**:理解...

    GNU Linux C++编程

    8. **多线程和并发**:C++11引入了线程库,使得在Linux下编写多线程程序变得简单。了解互斥量、条件变量、future和promise等并发控制工具,可以编写出高效的并发程序。 9. **内存管理**:C++提供了动态内存分配和...

    当析构函数遇到多线程── C++ 中线程安全的对象回调 PDF

    ### 当析构函数遇到多线程——C++中线程安全的对象回调 #### 1. 多线程下的对象生命期管理 C++作为一种需要程序员手动管理对象生命周期的语言,在多线程环境中尤其需要谨慎处理对象的创建和销毁过程。由于多线程...

    C++封装的linux下的线程池

    总的来说,C++封装的Linux线程池是利用C++的多线程特性和系统级接口(如POSIX线程库)实现的并发处理工具,它能有效地提升系统性能,同时降低资源消耗。通过阅读和分析"ThreadPool.cpp"和"ThreadPool.h",开发者可以...

    关于c++ 多线程入门的文档

    C++的多线程编程是现代软件开发中的重要技术,特别是在网络应用和嵌入式系统中,多线程能够提高程序的并发性和实时性。在本文档中,我们将探讨C++多线程的基础知识,包括线程的概念、创建、状态以及资源管理。 线程...

Global site tag (gtag.js) - Google Analytics