std::experimental::atomic_weak_ptr<T>::atomic_weak_ptr
From cppreference.com
< cpp | experimental | atomic weak ptr
C++
Experimental
| Technical Specification | ||||
| Filesystem library (filesystem TS) | ||||
| Library fundamentals (library fundamentals TS) | ||||
| Library fundamentals 2 (library fundamentals TS v2) | ||||
| Library fundamentals 3 (library fundamentals TS v3) | ||||
| Extensions for parallelism (parallelism TS) | ||||
| Extensions for parallelism 2 (parallelism TS v2) | ||||
| Extensions for concurrency (concurrency TS) | ||||
| Extensions for concurrency 2 (concurrency TS v2) | ||||
| Concepts (concepts TS) | ||||
| Ranges (ranges TS) | ||||
| Reflection (reflection TS) | ||||
| Mathematical special functions (special functions TR) | ||||
| Experimental Non-TS | ||||
| Pattern Matching | ||||
| Linear Algebra | ||||
| std::execution | ||||
| Contracts | ||||
| 2D Graphics |
Extensions for concurrency
| std::future extensions | ||||
| Latches and barriers | ||||
| Atomic smart pointers | ||||
std::experimental::atomic_weak_ptr
atomic_weak_ptr::atomic_weak_ptr | ||||
| constexpr atomic_weak_ptr() noexcept; |
(1) | |
| constexpr atomic_weak_ptr( weak_ptr<T> desired ) noexcept; |
(2) | |
| atomic_weak_ptr( const atomic_weak_ptr& ) = delete; |
(3) | |
Constructs a new atomic_weak_ptr object.
1) The default constructor initializes the object to an empty state.
2) Initializes the underlying
weak_ptr<T> with desired. The initialization is not atomic.3) Atomic variables are not CopyConstructible.
[edit] Parameters
| desired | - | value to initialize with |