- C 标准库
- C 标准库
- C++ 标准库
- C++ 库 - 首页
- C++ 库 - <fstream>
- C++ 库 - <iomanip>
- C++ 库 - <ios>
- C++ 库 - <iosfwd>
- C++ 库 - <iostream>
- C++ 库 - <istream>
- C++ 库 - <ostream>
- C++ 库 - <sstream>
- C++ 库 - <streambuf>
- C++ 库 - <atomic>
- C++ 库 - <complex>
- C++ 库 - <exception>
- C++ 库 - <functional>
- C++ 库 - <limits>
- C++ 库 - <locale>
- C++ 库 - <memory>
- C++ 库 - <new>
- C++ 库 - <numeric>
- C++ 库 - <regex>
- C++ 库 - <stdexcept>
- C++ 库 - <string>
- C++ 库 - <thread>
- C++ 库 - <tuple>
- C++ 库 - <typeinfo>
- C++ 库 - <utility>
- C++ 库 - <valarray>
- C++ STL 库
- C++ 库 - <array>
- C++ 库 - <bitset>
- C++ 库 - <deque>
- C++ 库 - <forward_list>
- C++ 库 - <list>
- C++ 库 - <map>
- C++ 库 - <multimap>
- C++ 库 - <queue>
- C++ 库 - <priority_queue>
- C++ 库 - <set>
- C++ 库 - <stack>
- C++ 库 - <unordered_map>
- C++ 库 - <unordered_set>
- C++ 库 - <vector>
- C++ 库 - <algorithm>
- C++ 库 - <iterator>
- C++ 高级库
- C++ 库 - <any>
- C++ 库 - <barrier>
- C++ 库 - <bit>
- C++ 库 - <chrono>
- C++ 库 - <cinttypes>
- C++ 库 - <clocale>
- C++ 库 - <condition_variable>
- C++ 库 - <coroutine>
- C++ 库 - <cstdlib>
- C++ 库 - <cstring>
- C++ 库 - <cuchar>
- C++ 库 - <charconv>
- C++ 库 - <cfenv>
- C++ 库 - <cmath>
- C++ 库 - <ccomplex>
- C++ 库 - <expected>
- C++ 库 - <format>
- C++ 库 - <future>
- C++ 库 - <flat_set>
- C++ 库 - <flat_map>
- C++ 库 - <filesystem>
- C++ 库 - <generator>
- C++ 库 - <initializer_list>
- C++ 库 - <latch>
- C++ 库 - <memory_resource>
- C++ 库 - <mutex>
- C++ 库 - <mdspan>
- C++ 库 - <optional>
- C++ 库 - <print>
- C++ 库 - <ratio>
- C++ 库 - <scoped_allocator>
- C++ 库 - <semaphore>
- C++ 库 - <source_location>
- C++ 库 - <span>
- C++ 库 - <spanstream>
- C++ 库 - <stacktrace>
- C++ 库 - <stop_token>
- C++ 库 - <syncstream>
- C++ 库 - <system_error>
- C++ 库 - <string_view>
- C++ 库 - <stdatomic>
- C++ 库 - <variant>
- C++ STL 库速查表
- C++ STL - 速查表
C++ 库 - <atomic>
简介
这些类型封装了一个值,其访问保证不会导致数据竞争,可用于在不同线程之间同步内存访问,原子库提供用于细粒度原子操作的组件,允许无锁并发编程。每个原子操作对于涉及同一对象的任何其他原子操作都是不可分割的。
原子类型
序号 | 成员类型及定义 |
---|---|
1 |
atomic
原子类模板和针对 bool、整数和指针类型的特化 |
C 风格原子类型
以下是原子类型,也在此头文件中定义。
包含类型 | 原子类型 | 描述 |
---|---|---|
bool |
atomic_bool | |
char |
atomic_char | 用于基本整数类型的原子。 这些或者是相应`atomic`类模板完整特化的typedef,或者此类特化的基类。 |
signed char |
atomic_schar | |
unsigned char |
atomic_uchar | |
short |
atomic_short | |
unsigned short |
atomic_ushort | |
int |
atomic_int | |
unsigned int |
atomic_uint | |
long |
atomic_long | |
unsigned long |
atomic_ulong | |
long long |
atomic_llong | |
unsigned long long |
atomic_ullong | |
wchar_t |
atomic_wchar_t | |
char16_t |
atomic_char16_t | |
char32_t |
atomic_char32_t | |
intmax_t | atomic_intmax_t | 用于基于宽度的整数(在<cinttypes>中定义)的原子。 每个都是上述基本整数类型原子或具有扩展整数类型的`atomic`类模板完整特化的别名。 其中N是8、16、32、64或库支持的任何其他类型宽度。 |
uintmax_t | atomic_uintmax_t | |
int_least N_t |
atomic_int_least N_t |
|
uint_least N_t |
atomic_uint_least N_t |
|
int_fast N_t |
atomic_int_fast N_t |
|
uint_fast N_t |
atomic_uint_fast N_t |
|
intptr_t | atomic_intptr_t | |
uintptr_t | atomic_uintptr_t | |
size_t | atomic_size_t | |
ptrdiff_t | atomic_ptrdiff_t |
原子类型的操作
&
序号 | 操作及定义 |
---|---|
1 |
atomic_is_lock_free
用于检查原子类型的操作是否为无锁的 |
2 |
atomic_store & atomic_store_explicit
它自动将原子对象的value替换为非原子参数 |
3 |
atomic_load & atomic_load_explicit
它以原子方式获取存储在原子对象中的值 |
4 |
atomic_exchange & atomic_exchange_explicit
它以原子方式将原子对象的value替换为非原子参数,并返回原子的旧值 |
5 |
atomic_compare_exchange_weak & atomic_compare_exchange_weak_explicit & atomic_compare_exchange_strong & atomic_compare_exchange_strong_explicit
它以原子方式将原子对象的value与非原子参数进行比较,如果相等则执行原子交换,否则执行原子加载 |
6 |
atomic_fetch_add & atomic_fetch_add_explicit
它将非原子值添加到原子对象,并获取原子的前一个值 |
7 |
atomic_fetch_sub & atomic_fetch_sub_explicit
它从原子对象中减去非原子值,并获取原子的前一个值 |
8 |
atomic_fetch_and & atomic_fetch_and_explicit
它将原子对象替换为与非原子参数的逻辑 AND 的结果,并获取原子的前一个值 |
9 |
atomic_fetch_or & atomic_fetch_or_explicit
它将原子对象替换为与非原子参数的逻辑 OR 的结果,并获取原子的前一个值 |
10 |
atomic_fetch_xor & atomic_fetch_xor_explicit
它将原子对象替换为与非原子参数的逻辑 XOR 的结果,并获取原子的前一个值 |
标志类型和操作
序号 | 标志类型及定义 |
---|---|
1 |
atomic_flag
无锁布尔原子类型 |
2 |
atomic_flag_test_and_set & atomic_flag_test_and_set_explicit
它将标志原子设置为 true 并返回其前一个值 |
3 |
atomic_flag_clear & atomic_flag_clear_explicit
它将标志的值原子设置为 false |
广告