【计算机原理】大端序与小端序
作者:互联网
大端序和小端序
字节存储顺序主要分为大端序(Big-endian)和小端序(Little-endian),区别如下
- Big-endian:高位字节存入低地址,低位字节存入高地址
- Little-endian:低位字节存入低地址,高位字节存入高地址
大端序和小端序的使用场景
x86系列CPU都是Little-endian字节序;
PowerPC通常是Big-endian字节序;
网络协议都是Big-endian字节序;
大端序和小端序的转换
一般我们的主机采用的都是小端序,而网络协议采用大端序,所以在主机手法网络数据时,需要进行字节顺序的转换:
//32位host->net
uint32_t htonl(uint32_t hostlong);
//32位net->host
uint32_t ntohl(uint32_t netlong);
//16位host->net
uint16_t htol(uint16_t hostshort);
//16位net->host
uint16_t htol(uint16_t netshort);
以上函数实现(举几个例子)
区分大端序和小端序的方法
void checkCPUendian()
{
union{
//两字节
unsigned short a;
//单字节
char b;
} c;
c.a = 0x0102;
if(c.b == 2) cout << "little endian" << endl;
else cout << "big endian" << endl;
}
标签:大端序,字节,Big,小端序,host,endian,计算机 来源: https://blog.csdn.net/weixin_45005811/article/details/114827319