Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个字节,其中包含高 4 位是系统状态的位图,如 0x40,0x80 和低 4 位值,如 0,1,2,3。我不知道如何解析它们。有人能帮帮我吗。我能有这样的东西吗?字节会是什么样子???会是字节 b=(字节)0x80 吗?
位掩蔽。要获取高 4 位:
Upper=byte&0xF0
为了获得第一
First=byte&0x01
等等。