C++ htons(), htonl(), ntohs(), ntohl()詳解

來源:互聯網
上載者:User

將多位元組整數類型的資料,從主機的位元組順序轉化為網路位元組順序

#include <netinet/in.h>

uint32_t htonl(uint32_t hostlong);
uint16_t htons(uint16_t hostshort);
uint32_t ntohl(uint32_t netlong);
uint16_t ntohs(uint16_t netshort);

htonl就是把本機位元組順序轉化為網路位元組順序。

所謂網路位元組順序(大尾順序)就是指一個數在記憶體中儲存的時候“高對低,低對高”(即一個數的高位位元組存放於低地址單元,低位位元組存放在高地址單元中)。但是電腦的記憶體儲存資料時有可能是大尾順序或者小尾順序。

h---host 本地主機
to  就是to 了
n  ---net 網路的意思
l 是 unsigned long

"s"表示short,"l"表示long

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.