37.bind和function实现mini线程池

bind绑定器返回的结果还是一个函数对象

bind是函数模板,可以自动推演模板类型参数

在这里插入图片描述

class Thread
{
public:
	Thread(function<void(int)> func,int no):_func(func),_no(no) {}
	thread start()
	{
		thread t(_func,_no);//_func(_no)
		return t;
	}
private:
	function<void()> _func;
	int _no;
};

class ThreadPool
{
public:
	ThreadPool(){}
	~ThreadPool()
	{
		//释放Thread对象占用的堆资源
		for(int i=0;i<_pool.size();++i)
		{
			delete _pool[i];
		}
	}
	void startPool(int size)
	{
		for(int i=0;i<size;++i)
		{
			_pool.push_back(new Thread(bind(&Thread::runInThread,this,_1),i));
		}
		for(int i=0;i<size;++i)
		{
			_handler.push_back(_pool[i]->start());
		}
		for(thread& t : _handler)
		{
			t.join();
		}
	}
private:
	vector<Thread*> _pool;
	vector<thread> _handler;
	void runInThread(int id)
	{
		cout << "call runInThread!id:" << id << endl;
	}
}:

int main()
{
	ThreadPool pool;
	pool.startPool(10);
	return 0;
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值