摘要: 1. std::mutex:独占的互斥量,不能递归使用。下面是它的类的部分定义: class mutex { public: // std::mutex不支持拷贝和赋值操作。 mutex(const mutex&) = delete; mutex& operator=(const mutex&) = 阅读全文
posted @ 2020-05-31 07:53 _yanghh 阅读(2058) 评论(0) 推荐(1) 编辑