缓冲区应该进入什么数字系统?
我想通过自己创建字节数组来发送字节数组,而不是通过字符串编码。这个数组应该采用什么数字系统,或者没有什么区别?
I want to send an array of bytes by creating it myself, not by string encoding. What number system should this array be in, or does it make no difference?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个字节就是一个字节(十进制值从0到255)。它没有内在的意义。十进制值为 97 的字节可以表示为:
或两个人共同同意的任何其他格式。该值将始终相同。
所以,回答你的问题,不,实际的格式本身并没有什么区别。
A byte is a byte (with a decimal value from 0 to 255). It has no inherent meaning. A byte with a decimal value of 97 could be represented as:
or any other format that two people mutually agree to. The value will always be the same.
So, to answer your question, no, the actual format itself does not make a difference.