这是二进制的助记符吗?
0x00000000 等类似数字有什么作用?
What do numbers like 0x00000000 and similar do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
0x00000000 等类似数字有什么作用?
What do numbers like 0x00000000 and similar do?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
“0x”前缀表示数字的其余部分将以 16 为基数(十六进制)进行解释,其中 A 到 F 充当值为 11 到 15 的数字。“0x00000000”只是一个全零组成的数字,并且因此,与每个基数一样,它都等于 0。
The "0x" prefix indicates that the rest of the number is to be interpreted in base 16 (hexadecimal), with A through F serving as the digits with values 11 through 15. "0x00000000" is just a number composed of all zeroes, and so, as in every base, it is equal to 0.
0x
只是表示以下数字采用十六进制(基数为 16) )。除此之外,你的问题有点没有意义。
The
0x
simply means that the following digits are in hexadecimal (base 16).Beyond that, your question is somewhat meaningless.
以十六进制格式表示为零。
许多编程语言接受整数这样的值。
It's zero in hexadecimal format.
Many programming languages accept such values as integers.