C++ Bitset 库 - operator<< 函数
描述
C++ 函数 std::bitset::operator<< 对 bitset 执行按位左 SHIFT 操作。
声明
以下是 std::bitset::operator<< 函数形式 std::bitset 标头的声明。
C++98
bitset operator<<(size_t pos) const;
C++11
bitset operator<<(size_t pos) const noexcept;
参数
pos − 要移位的位数。
返回值
返回包含移位位的新 bitset 对象。
异常
此成员函数从不抛出异常。
示例
以下示例显示了 std::bitset::operator<< 函数的用法。
#include <iostream> #include <bitset> using namespace std; int main(void) { bitset<4> b("0001"); auto result = b << 1; cout << result << endl; return 0; }
让我们编译并运行上面的程序,这将产生以下结果 −
0010