位运算左移

This commit is contained in:
flykhan 2023-06-19 15:41:30 +08:00
parent 6f86054fb6
commit 1ab9831597
1 changed files with 20 additions and 0 deletions

20
day6/d8.cpp Normal file
View File

@ -0,0 +1,20 @@
/*
0b 1100 0011 << 2 -67
0b 0000 1100 12
0.
[].
*/
#include <iostream>
#include <bitset>
using namespace std;
int main()
{
char n = 0b11000011; // 0b 表示二进制表示法 0b11000011 = 195
cout << "n = " << bitset<8>(n) << endl; // n = 11000011
n = n << 2; // 建议不要使用 <<= 运算符,因为它会改变 n 的类型 // 0b00001100 = 12 195 << 2 = 12
cout << "n = " << bitset<8>(n) << "\t" << (int)n << endl; // n = 00001100
return 0;
}