비트 연산자(8)
-
비트 연산자-OperatorEx16
비트연산자 소스코드 public class OperatorEx16 { public static void main(String[] args) { int num1=5; /* 00000000 00000000 00000000 00000101 */ int num2=3; /* 00000000 00000000 00000000 00000011 */ int num3=-1; /* 11111111 11111111 11111111 11111111 */ System.out.println(num1 & num2); // 00000000 00000000 00000000 00000101 // 00000000 00000000 00000000 00000011 // 00000000 00000000 00000000 00000001 Syste..
-
비트 연산 진리표
비트 연산 진리표 & (AND) A B A | B 0 0 0 0 1 1 1 0 1 1 1 1 ^ (XOR) A ~A 0 1 1 0