C++ 位集库 - 运算符~ 函数


描述

C++ 函数std::bitset::operator~对 bitset 执行按位 NOT 运算。

宣言

以下是 std::bitset::operator~ 函数形式 std::bitset 标头的声明。

C++98

bitset operator~() const;

C++11

bitset operator~() const noexcept;

参数

没有任何

返回值

返回指针。

例外情况

返回所有位都反转的临时位集。

例子

以下示例显示了 std::bitset::operator~ 函数的用法。

#include <iostream>
#include <bitset>

using namespace std;

int main(void) {
   bitset<4> b("0000");

   cout << ~b << endl;

   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果 -

1111
位集.htm