Linux——线程互斥与同步

Linux——线程互斥与同步



一、多人抢票模拟实现

上篇文章我们简单的对原生线程库就行了封装,这里直接引入代码

#pragma once
#include <iostream>
#include <pthread.h>
#include <functional>
using namespace std;

template <class T>
using func_t = function<void(T)>;

template <class T>
class Thread
{
   
    // 传入该线程对应的Thread
    static void *ThreadRoutine(void *args)
    {
   
        Thread *ts = static_cast<Thread *>(args);

        //cout << "threadnamed: " << ts->_threadname << "  " << "tid: " << ts->_tid << endl;
        ts->_func(ts->_data);

        return nullptr;
    }

public:
    Thread(string threadname, func_t<T> func, T data)
        : _threadname(threadname), _func(func), _isrunning(false), _data(data)
    {
   
    }

    bool Start()
    {
   
        int n = pthread_create(&_tid, nullptr, ThreadRoutine, this);
        if (n == 0)
        {
   
            _isrunning = true;
            return true;
        }
        else
        {
   
            return false;
        }
    }

    bool Join()
    {
   
        if (!_isrunning)
        {
   
            return true;
        }

        int n = pthread_join(_tid, nullptr);
        if (n == 0)
        {
   
            _isrunning = false;
            return true;
        }
        else
        {
   
            return false;
        }
    }
    string ThreadName()
    {
   
        return _threadname;
    }
    bool IsRunning()
    {
   
        return _isrunning;
    }

    ~Thread()
    {
   
    }

private:
    pthread_t _tid;
    string _threadname;
    func_t<T> _func;
    T _data;
    bool _isrunning;
};

模拟实现一段多线程抢票的代码

int tickets = 1000;

string GetThreadName(
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值