std::bitset<N>::reference
来自 cppreference.com
class reference; |
||
该 std::bitset 类包含 std::bitset::reference
作为公开可访问的嵌套类。该类用作代理对象,允许用户与 bitset 的单个位交互,因为标准 C++ 类型(如引用和指针)没有足够的精度来指定单个位。
std::bitset::reference
的主要用途是提供一个左值,该左值可以从 operator[]
返回。
通过 std::bitset::reference
对 bitset 进行的任何读写操作都可能读写整个底层 bitset。
内容 |
[编辑] 成员函数
(构造函数) |
构造引用。仅可供 std::bitset 本身访问 (私有成员函数) |
(析构函数) |
销毁引用 (公共成员函数) |
operator= |
将 bool 赋值给引用的位 (公共成员函数) |
operator bool |
返回引用的位 (公共成员函数) |
operator~ |
返回反转的引用位 (公共成员函数) |
flip |
翻转引用的位 (公共成员函数) |
std::bitset<N>::reference::~reference
~reference(); |
(从 C++23 开始为 constexpr) | |
销毁引用。
std::bitset<N>::reference::operator=
(1) | ||
reference& operator=( bool x ); |
(直到 C++11) | |
reference& operator=( bool x ) noexcept; |
(从 C++11 开始) (从 C++23 开始为 constexpr) |
|
(2) | ||
reference& operator=( const reference& x ); |
(直到 C++11) | |
reference& operator=( const reference& x ) noexcept; |
(从 C++11 开始) (从 C++23 开始为 constexpr) |
|
将值赋值给引用的位。
参数
x | - | 要赋值的值 |
返回值
*this
std::bitset<N>::reference::operator bool
operator bool() const; |
(直到 C++11) | |
operator bool() const noexcept; |
(从 C++11 开始) (从 C++23 开始为 constexpr) |
|
返回引用的位的值。
参数
(无)
返回值
引用的位。
std::bitset<N>::reference::operator~
bool operator~() const; |
(直到 C++11) | |
bool operator~() const noexcept; |
(从 C++11 开始) (从 C++23 开始为 constexpr) |
|
返回引用的位的反值。
参数
(无)
返回值
引用的位的反值。
std::bitset<N>::reference::flip
reference& flip(); |
(直到 C++11) | |
reference& flip() noexcept; |
(从 C++11 开始) (从 C++23 开始为 constexpr) |
|
反转引用的位。
参数
(无)
返回值
*this
[编辑] 示例
运行此代码
#include <bitset> #include <iostream> int main() { std::bitset<4> bs{0b1110}; std::bitset<4>::reference ref = bs[2]; auto info = [&](int id) { std::cout << id << ") bs: " << bs << "; ref bit: " << ref << '\n'; }; info(1); ref = false; info(2); ref = true; info(3); ref.flip(); info(4); ref = bs[1]; // operator=( const reference& x ) info(5); std::cout << "6) ~ref bit: " << ~ref << '\n'; }
输出
1) bs: 1110; ref bit: 1 2) bs: 1010; ref bit: 0 3) bs: 1110; ref bit: 1 4) bs: 1010; ref bit: 0 5) bs: 1110; ref bit: 1 6) ~ref bit: 0
[编辑] 另请参阅
访问特定位 (公共成员函数) |