首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

std::atomic_load

Defined in header <atomic>

?

?

?

(1)

(since C++11)

template< class T > T atomic_load( const std::atomic<T>* obj );

?

template< class T > T atomic_load( const volatile std::atomic<T>* obj );

?

?

(2)

(since C++11)

template< class T > T atomic_load_explicit( const std::atomic<T>* obj, std::memory_order order );

?

template< class T > T atomic_load_explicit( const volatile std::atomic<T>* obj, std::memory_order order );

?

1%29原子地获得obj好像obj->load()

2%29原子地获得obj好像obj->load(order)

参数

obj

-

pointer to the atomic object to modify

order

-

the memory synchronization ordering for this operation: only std::memory_order_relaxed, std::memory_order_consume, std::memory_order_acquire and std::memory_order_seq_cst are permitted.

返回值

所指向的原子对象所持有的值。obj...

例外

noexcept规格:

noexcept

另见

load

atomically obtains the value of the atomic object (public member function of std::atomic)

atomic_storeatomic_store_explicit (C++11)(C++11)

atomically replaces the value of the atomic object with a non-atomic argument (function template)

memory_order (C++11)

defines memory ordering constraints for the given atomic operation (typedef)

std::atomic_load(std::shared_ptr) std::atomic_load_explicit(std::shared_ptr)

specializes atomic operations for std::shared_ptr (function template)

C原子文档[医]负载、原子的[医]负载[医]显式

代码语言:txt
复制
 ? cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com