命名空间
变体
操作

std::bitset<N>::reference

来自 cppreference.com
< cpp‎ | utility‎ | bitset
 
 
实用程序库
语言支持
类型支持 (基本类型, RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三向比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
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

[编辑] 另请参阅

访问特定位
(公共成员函数) [编辑]