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中文網其他相關文章!