我是靠谱客的博主 怕孤独金毛,最近开发中收集的这篇文章主要介绍c++17区域锁std::scoped_lock应用实例一 std::scoped_lock简介二 实例,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一 std::scoped_lock简介

template< class... MutexTypes >
class scoped_lock;

(1)将多个锁(std::mutex等)包装成一种锁类型,用于线程一次性申请多个锁,避免死锁。

(2)当程序出现异常,可自动析构,完成锁的是否。

二 实例

#include <iostream>
#include <string>
#include <vector>
#include <mutex>
#include <thread>
using item_t = int;
class user {
public:
    user(const std::string &id) : id_(id) {
    }
    void exchange_infos(user &other) {
        std::scoped_lock sl(lock_, other.lock_);
        infos_.swap(other.infos_);
        std::cout << "user id:" << id_ << " exchange user id:" << other.id_ << std::endl;
    }
private:
    std::string id_;
    std::vector<item_t>infos_;
    std::mutex lock_;
};
void exchange(user &user1, user &user2) {
    user1.exchange_infos(user2);
}

int main() {
    user user1("user1");
    user user2("user2");
    user user3("user3");
    user user4("user4");

    std::vector<std::thread>threads;
    threads.emplace_back(exchange, std::ref(user1), std::ref(user2));
    threads.emplace_back(exchange, std::ref(user2), std::ref(user3));
    threads.emplace_back(exchange, std::ref(user4), std::ref(user2));
    threads.emplace_back(exchange, std::ref(user3), std::ref(user2));
    threads.emplace_back(exchange, std::ref(user1), std::ref(user4));

    for (auto &th : threads) {
        if (th.joinable()) {
            th.join();
        }
    }

    return 0;
}

编译脚本make.sh:

g++ -std=c++17 -g -o Test test.cpp -pthread

最后

以上就是怕孤独金毛为你收集整理的c++17区域锁std::scoped_lock应用实例一 std::scoped_lock简介二 实例的全部内容,希望文章能够帮你解决c++17区域锁std::scoped_lock应用实例一 std::scoped_lock简介二 实例所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部