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.
我正在编写一个小 x86 程序,我对“类型”大小感到惊讶。
.short 正在处理 4 个字节的值,例如 .short 0xFFFF 和 .long 8 个字节,而 .bytes 正在处理 2 个字节。
我找不到解释,我做错了什么?
0xFFFF 是两个字节,而不是四个。一个十六进制数字是四位(一个 nybble),一个字节中有八位。