连接 16 位有符号整数的 MSB 和 LSB(二进制补码)

发布于 2024-09-07 21:57:04 字数 237 浏览 3 评论 0原文

我正在使用一种专有协议,该协议将整数作为 16 位二进制补码分两部分传输。首先传输 LSB,然后传输 MSB。下面恢复原始值的代码是否正确?

unsigned char message[BLK_SIZE];
// read LSB to message[0] and MSB to message[1]
short my_int = (message[1] << 8) | message[0];

I'm working with a proprietary protocol that transmits integers as 16 bit two's complement in two parts. The LSB is transmitted first followed by the MSB. Is the following code to restore the original value correct?

unsigned char message[BLK_SIZE];
// read LSB to message[0] and MSB to message[1]
short my_int = (message[1] << 8) | message[0];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

一场春暖 2024-09-14 21:57:04

我相信如果 short 不是 16 位,代码将会失败,因此您的代码在某些平台上可能会失败。但你可能永远找不到一个失败的平台。

int16_t(如果您的目标平台上可用)可能是更好的选择。

I believe that code will fail if short is not 16 bits, so your code may fail on some platforms. You may never find a platform it fails on though.

int16_t, if available on your target platform(s), may be a better choice.

獨角戲 2024-09-14 21:57:04

您的代码看起来正确,但您可以使用内部 C 函数来确保您的协议真正独立于平台:

short my_int = ntohs(*(short*)message)

Your code looks correct, but you could use intrinsic C functions for ensuring that your protocol is truly platform independant:

short my_int = ntohs(*(short*)message)

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