判断系统的字节顺序

版权声明:拓洲网络创始人翁志艺,官网https://www.yiqishare.com https://blog.csdn.net/iteye_7863/article/details/82480275
Why Worry About Byte Order

In general, the underlying byte order of the processor is completely transparent to the programmer. However, there can be a problem, for example, when data is exchanged with another system, since the other system may interpret multi-byte values differently.

For example, since it is not possible to predict the type of system at either end of the network, network protocols must define the byte order that is used for multi-byte values in their headers. [color=red]This is called the network byte order, and for TCP/IP[/color], it is [color=red]big endian[/color]. Thus, the sending system converts the data from it local byte order to the network byte order. Then, the receiving system converts the data from network byte order to its local byte order. In practice, if either system uses the same byte order as the network byte order, the conversion operation is optimized out and no conversion takes place.

Another example is the [color=red]USB[/color] protocol, which defines that multi-byte values will use the [color=red]little endian[/color] byte order.


union{
int i;
char c[sizeof(int)];
} endian;

endian.i=1;
if(endian.c[0]==1){
std::cout<<"little"<<std::endl;
}else{
std::cout<<"big"<<std::endl;
}


[color=white]作者:翁志艺[/color]

猜你喜欢

转载自blog.csdn.net/iteye_7863/article/details/82480275