zoukankan      html  css  js  c++  java
  • c++11多线程学习笔记之二 mutex使用

    // 1111111.cpp : 定义控制台应用程序的入口点。
    //
    
    #include "stdafx.h"
    #include <iostream>
    #include <thread>
    #include <mutex>         
    
    int gcounter = 0;
    std::mutex gmtx;    
    std::mutex gmtxOutput;
    
    void Increases() {
    	for (int i = 0; i<10000; ++i) {
    		if (gmtx.try_lock()) {   // only increase if currently not locked:
    			++gcounter;
    			gmtx.unlock();
    		}
    		else{
    			gmtxOutput.lock();
    			std::cout << "try lock failed" << std::endl;
    			gmtxOutput.unlock();
    		}
    	}
    }
    
    int _tmain(int argc, _TCHAR* argv[]) {
    	std::thread threads[10];
    	for (int i = 0; i<10; ++i)
    		threads[i] = std::thread(Increases);
    
    	for (auto& th : threads) 
    		th.join();
    	std::cout << "counter is " << gcounter << std::endl;
    
    	return 0;
    }
    

    输出:

    try lock failed
    try lock failed
    try lock failed
    try lock failed
    try lock failed
    try lock failed
    try lock failed
    try lock failed
    try lock failed
    try lock failed
    try lock failed
    try lock failed
    try lock failed
    try lock failed
    try lock failed
    try lock failed
    try lock failed
    counter is 99983
    请按任意键继续. . .

     这个例子说明了 try_lock() 与 lock()的区别

    try_lock()会对能否上锁进行测试 并返回布尔值

    而lock()则直接进行锁定 不能锁定则阻塞直到锁定

  • 相关阅读:
    img src 改变问题
    <a href="javascript:;" ></a>
    CSS先后顺序影响效果
    CSS学习遇到问题,注释问题
    关于某个网站的分析
    问题汇总
    作为一枚web前端开发工程师 这些CSS 小技巧你值得掌握
    web前端性能优化
    Sea.js学习笔记
    学习计划
  • 原文地址:https://www.cnblogs.com/itdef/p/4559146.html
Copyright © 2011-2022 走看看