zoukankan      html  css  js  c++  java
  • std::unique_lock<std::mutex> or std::lock_guard<std::mutex> C++11 区别

    http://stackoverflow.com/questions/20516773/stdunique-lockstdmutex-or-stdlock-guardstdmutex

    The difference is that you can lock and unlock a std::unique_lockstd::lock_guard will be locked only once on construction and unlocked on destruction.

    So for usecase B you definitely need a std::unique_lock for the condition variable. In case A it depends whether you need to relock the guard.

    std::unique_lock has other features that allow it to e.g.: be constructed without locking the mutex immediately but to build the RAII wrapper (see here).

    Lock guards can be used when you simply need a wrapper for a limited scope, e.g.: a member function:

    void member_foo() {
        std::lock_guard<mutex_type> lock(this->my_mutex);
        ...
    }

    To clarify a question by chmike, by default std::lock_guard and std::unique_lock are the same. So in the above case, you could replace std::lock_guard with std::unique_lock. However, std::unique_lock might have a tad more overhead.

  • 相关阅读:
    1:4 UI标签和通用标签
    1:3访问 servlet API 的两种方式(request,session等内置对象)
    1 :2 Strust2—Demo
    1:1 Struts2概述
    mysql索引原理与慢查询优化1
    mysql流程控制
    mysql函数
    mysql存储过程
    mysql事务
    mysql触发器
  • 原文地址:https://www.cnblogs.com/diegodu/p/6243939.html
Copyright © 2011-2022 走看看