问题描述
为什么,如果你在一个十六进制编辑器打开一个EXE文件,你会看到各种各样的东西。如果电脑只能理解二进制那么不应该只出现在文件中看到2种可能的符号?谢谢
Why is it that if you open up an EXE in a hex editor, you will see all sorts of things. If computers only understand binary then shouldn't there only be 2 possible symbols seen in the file? Thanks
推荐答案
的十六进制值是内存间preTED二进制值。该软件不仅使其更具可读性一点人类。
The hexadecimal values are interpreted binary values in memory. The software only make it a bit more readable to human beings.
0000 = 0结果
0001 = 1结果
0010 = 2结果
0011 = 3结果
0100 = 4结果
0101 = 5结果
0110 = 6结果
0111 = 7结果
1000 = 8结果
1001 = 9结果
1010 = 10 A结果
1011 =图11B结果
1100 = 12 C结果
1101 = 13ð结果
1110 = 13 E结果
1111 =第15楼
0000 = 0
0001 = 1
0010 = 2
0011 = 3
0100 = 4
0101 = 5
0110 = 6
0111 = 7
1000 = 8
1001 = 9
1010 = 10 A
1011 = 11 B
1100 = 12 C
1101 = 13 D
1110 = 14 E
1111 = 15 F
这篇关于为什么没有EXE的二进制?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!