c++读者写者问题

利用boost库:

class rw_data{
private:
	int m_x;
	shared_mutex rw_mu;
public:
	rw_data():m_x(0){}
	void write(){
	  unique_lock<shared_mutex> ul(rw_mu);
	  ++m_x;
	}
	void read(int* x){
	  shared_lock<shared_mutex> sl(rw_mu);
	  *x=m_x;
	}
};
void writer(rw_data& d){
	for(int i=0;i<20;++i){
	  this_thread::sleep_for(chrono::milliseconds(10));
	  d.write();
	}
}
void reader(rw_data& d){
  int x;
  for(int i=0;i<10;++i){
   this_thread::sleep_for(chrono::milliseconds(5));
   d.read(&x);
   mutex::scoped_lock lock(io_mu);
   cout<<"reader:"<<x<<endl;
  }
}
int main(){
  rw_data d;
  thread_group pool;
  boost::function<void()> f=boost::bind(writer,boost::ref(d));
  boost::function<void()> f2=boost::bind(reader,boost::ref(d));

  pool.create_thread(f);
  pool.create_thread(f);
  pool.create_thread(f2);
  pool.create_thread(f2);
  pool.create_thread(f2);
  pool.create_thread(f2);
 
  pool.join_all();
   std::system("pause");
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值