C 中的 64 位字节序转换
htonl() 函数通常用于将 32 位整数从主机字节转换为网络字节命令。但是,这对于 64 位整数可能还不够,需要不同的方法。
跨平台解决方案
对于标准跨平台解决方案,请考虑使用 htobe64() 函数。此函数在 Linux 和 FreeBSD 上可用,可以按如下方式使用:
<code class="cpp">#include <endian.h> uint64_t host_int = 123; uint64_t big_endian; big_endian = htobe64(host_int); host_int = be64toh(big_endian);</code>
预处理器宏
如果 htobe64() 不可用,您可以使用用于隐藏平台差异的预处理器宏。以下代码针对 Linux、FreeBSD 和 OpenBSD 执行此操作:
<code class="cpp">#if defined(__linux__) # include <endian.h> #elif defined(__FreeBSD__) || defined(__NetBSD__) # include <sys/endian.h> #elif defined(__OpenBSD__) # include <sys/types.h> # define be16toh(x) betoh16(x) # define be32toh(x) betoh32(x) # define be64toh(x) betoh64(x) #endif</code>
基于联合的方法
另一个选项是使用联合来表示 64 位大端和小端格式的整数。然后您可以相应地交换字节。然而,这种方法在大端平台上可能会崩溃。
以上是如何在 C 中在主机字节顺序和网络字节顺序之间转换 64 位整数?的详细内容。更多信息请关注PHP中文网其他相关文章!