Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

ตัวดำเนินการ Bitwise ใน C


ตัวดำเนินการระดับบิตใช้เพื่อดำเนินการระดับบิตกับสองตัวแปร นี่คือตารางตัวดำเนินการระดับบิตในภาษา C

ตัวดำเนินการ ชื่อโอเปอเรเตอร์
& ระดับบิตและ
| ระดับบิตหรือ
^ XOR ระดับบิต
~ ส่วนเติมเต็มระดับบิต
<< เลี้ยวซ้าย
>> เลี้ยวขวา

นี่คือตัวอย่างตัวดำเนินการระดับบิตในภาษา C

ตัวอย่าง

#include <stdio.h>
int main() {
   int x = 10;
   int y = 28;
   int i = 0;
   printf("Bitwise AND : %d\n", x&y);
   printf("Bitwise OR : %d\n", x|y);
   printf("Bitwise XOR : %d\n", x^y);
   printf("Bitwise Complement : %d,%d\n", ~x,~-y);
   for(i;i<2;i++)
   printf("Right shift by %d: %d\n", i, x>>i);
   for(i;i<=3;++i)
   printf("Left shift by %d: %d\n", i, y<<i);
   return 0;
}

ผลลัพธ์

Bitwise AND : 8
Bitwise OR : 30
Bitwise XOR : 22
Bitwise Complement : -11,27
Right shift by 0: 10
Right shift by 1: 5
Left shift by 2: 112
Left shift by 3: 224