我们有atomic accessshared_ptr,但是我看不到如何自动重置它们:我缺少什么?

最佳答案

您可以只使用带有默认构造的atomic_exchangeshared_ptr:

atomic_exchange(&ptr, {});

09-06 09:03