C++ Bitset 库 - 运算符>> 函数


描述

C++ 函数std::bitset::operator>>对 bitset 执行按位右移操作。

宣言

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

C++98

bitset operator>>(size_t pos) const;

C++11

bitset operator>>(size_t pos) const noexcept;

参数

pos - 要移位的位数。

返回值

返回包含移位位的新位集对象。

例外情况

该成员函数从不抛出异常。

例子

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

#include <iostream>
#include <bitset>

using namespace std;

int main(void) {

   bitset<4> b("1000");

   auto result = b >> 1;

   cout << result << endl;

   return 0;
}

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

0100
位集.htm