本文介绍了C++11 等价于 boost shared_mutex的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
是否有与 boost::shared_mutex
等效的 C++11.或者在 C++11 中处理多读取器/单写入器情况的另一种解决方案?
解决方案
我尝试过但未能将 shared_mutex
导入 C++11.它已被提议作为未来的标准.该提案位于此处.>
编辑:修订版 (N3659) 是接受 C++14.
这是一个实现:
http://howardhinnant.github.io/shared_mutex
http://howardhinnant.github.io/shared_mutex.cpp
Is there a C++11 equivalent for the boost::shared_mutex
. Or another solution to handle a multiple reader / single writer situation in C++11?
解决方案
I tried but failed to get shared_mutex
into C++11. It has been proposed for a future standard. The proposal is here.
Edit: A revised version (N3659) was accepted for C++14.
Here is an implementation:
http://howardhinnant.github.io/shared_mutex
http://howardhinnant.github.io/shared_mutex.cpp
这篇关于C++11 等价于 boost shared_mutex的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!