从存储的值减去指定的值,并返回原值 fetch_sub方法执行read-modify-write操作自动减去Value从*this中的存储值, 在Order指定的内存约束内。 #include<iostream>#include<thread>#include<atomic>std::atomic<longlong>data; int main() { long orginal = data.fetch_add(1, std::memory_order_relaxed); std::c...