命名空间
变体
操作

std::bitset<N>::operator==, std::bitset<N>::operator!=

来自 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)

 
 
bool operator==( const bitset& rhs ) const;
(1) (自 C++11 起为 noexcept)
(自 C++23 起为 constexpr)
bool operator!=( const bitset& rhs ) const;
(2) (自 C++11 起为 noexcept)
(直到 C++20)
1) 如果 *thisrhs 中的所有位都相等,则返回 true。
2) 如果 *thisrhs 中的任何位不相等,则返回 true。

!= 运算符是根据 operator== 合成 的。

(自 C++20 起)

[编辑] 参数

rhs - 要比较的 bitset

[编辑] 返回值

1) 如果 *this 中每一位的值都等于 rhs 中对应位的 value,则为 true,否则为 false
2) 如果 !(*this == rhs),则为 true,否则为 false

[编辑] 示例

比较给定的 bitset 以确定它们是否相同

#include <bitset>
#include <iostream>
 
int main()
{
    std::bitset<4> b1(0b0011);
    std::bitset<4> b2(b1);
    std::bitset<4> b3(0b0100);
 
    std::cout << std::boolalpha;
    std::cout << "b1 == b2: " << (b1 == b2) << '\n';
    std::cout << "b1 == b3: " << (b1 == b3) << '\n';
    std::cout << "b1 != b3: " << (b1 != b3) << '\n';
 
//  b1 == std::bitset<3>{}; // compile-time error: incompatible types
}

输出

b1 == b2: true
b1 == b3: false
b1 != b3: true