Bitwise Operations a = 0x00FF b = 0xF000 a & b = 0x0000 // bitwise and a | b = 0xF0FF // bitwise or. ~a. = 0xFF00 // bitwise not.
確定! 回上一頁