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.
我试图在互联网上找到一些关于 hexdump 中的行号意味着什么以及为什么它们被订购为 00000000、00000010、00000020 而不是 1,2..a..a2 等的解释,但没有成功。有人可以帮我理解这个吗?
“行号”实际上是每行开头的字节偏移量,以十六进制表示法表示。
由于每行有 16 个字节,并且第一行以字节 #0 开头,因此偏移量为:
00000000 00000010 (which means 16 in decimal) 00000020 (which means 32 in decimal) ... etc