最終更新日時(UTC):
が更新

履歴 編集

function
<bitset>

std::bitset::operator<<=

bitset<N>& operator<<=(size_t pos);                    // (1) C++03
bitset<N>& operator<<=(size_t pos) noexcept;           // (1) C++11
constexpr bitset<N>& operator<<=(size_t pos) noexcept; // (1) C++23

概要

ビットを左シフトさせる。

効果

*thisのビットをposの個数だけ左にシフトさせる。溢れたビットは0になる。

戻り値

*this

例外

投げない。

#include <iostream>
#include <bitset>

int main()
{
  std::bitset<8> bs("10000011");

  bs <<= 4;

  std::cout << bs << std::endl;
}

出力

00110000

参照