0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

bit操作 ~ <<(シフト演算)とbitset ~

Posted at

<<について
<<は左シフトを表しており、>>は右シフトを表します。もともとなかった箇所は0うめされます

シフトしたい数字 << bitシフトしたいか;
シフトしたい数字 >> bitシフトしたいか;

biset<>について

#include<bitset>
std::bitset<bit表示にするか> 変数名 = 2進数にしたい表示;
std::bitset<bit表示にするか>(2進数にしたい表示);

ただ表示したいだけなら、下の方を使うことが多いです


具体例

#include<iostream>
#include<bitset>
using namespace std;

int main(void){
  //43を2進数表示にする
  bitset<8> s=  43;
  cout << "上の方法 : " << s << endl;
  cout << "下の方法 : " << bitset<8>(43) <<endl;

  s = s << 2;
  cout << "2bit左シフト : " << s << endl;
  s = s >> 2;
  cout << "2bit右シフト : " << s << endl;
}

出力結果

上の方法 : 00101011
下の方法 : 00101011
2bit左シフト : 10101100
2bit右シフト : 00101011
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?