Boost:互斥锁

来自WHY42
imported>Soleverlee2015年10月30日 (五) 02:45的版本 (以“<source lang="cpp"> #include <iostream> #include <vector> #include <boost/thread.hpp> #include <windows.h> int sum = 0; boost::mutex mu; int addNum(int nCount){ fo...”为内容创建页面)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
#include <iostream>
#include <vector>
#include <boost/thread.hpp>
#include <windows.h>

int sum = 0;
boost::mutex mu;
int addNum(int nCount){
	for (int i = 0; i < nCount; i++){
		boost::mutex::scoped_lock lock(mu); 
		sum++;
	}
	return sum;
}
int main(int argc, char* argv[]) {
	std::vector<boost::thread*> threads;
	for (int i = 0; i < 1000; i++) {
		boost::thread* t = new boost::thread(addNum, 1000);
		threads.push_back(t);
	}
	std::vector<boost::thread*>::iterator it;
	for (it = threads.begin(); it != threads.end(); it++) {
		boost::thread* t = *it;
		t->join();
	}
	for (int j = 0; j < 10; j++) {
		std::cout << sum << endl;
		Sleep(200);
	}
	for (it = threads.begin(); it != threads.end(); it++) {
		boost::thread* t = *it;
		delete t;
	}
	system("pause");
	return 1;
}

如上的这一段代码,创建了1000个线程,每个线程把sum增加1000,那么程序的结果理论上应该是:

1000 * 1000 = 1000,000

如果不加锁,我们屏蔽掉boost::mutex::scoped_lock lock(mu); 这一行代码,运行一下看看: