Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想让两个不同的类访问受互斥体保护的共享数组。如果数组中有元素,则一个类写入数组,另一个类从数组中读取。在 C++ 中这种实现的可能方式是什么?
谢谢
听起来像教科书使用互斥锁。创建一个对象以将数组和互斥锁存储在私有值中,同时在开始时获取和设置虚构锁定并在返回之前解锁。