Bitwise Operation: 85196900 >> 16 & 65535 Explained
This is a bitwise operation that takes the number 85196900 in binary form (which is '10100011001000011110010100'), shifts it 16 bits to the right (which is equivalent to dividing it by 2^16), and then performs a bitwise AND operation with the number 65535 in binary form (which is '1111111111111111').
The result is 12964, which is the decimal equivalent of the binary number '11001010000100'.
原文地址: https://www.cveoy.top/t/topic/l0xX 著作权归作者所有。请勿转载和采集!