缓冲区应该进入什么数字系统?

发布于 2025-01-17 08:51:52 字数 62 浏览 0 评论 0原文

我想通过自己创建字节数组来发送字节数组,而不是通过字符串编码。这个数组应该采用什么数字系统,或者没有什么区别?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

街角迷惘 2025-01-24 08:51:52

一个字节就是一个字节(十进制值从0到255)。它没有内在的意义。十进制值为 97 的字节可以表示为:

  • 97(十进制)
  • 0x61(十六进制)
  • 'a'(ASCII)
  • 0110 0001(二进制)

或两个人共同同意的任何其他格式。该值将始终相同。

所以,回答你的问题,不,实际的格式本身并没有什么区别。

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:

  • 97 (decimal)
  • 0x61 (hex)
  • 'a' (ASCII)
  • 0110 0001 (binary)

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文