标签:
1
2
|
#include<winsock2.h> u_shorthtons(u_shorthostshort); |
序号
|
英文名
|
中文名
|
描述
|
1
|
big-endian
|
大尾顺序
|
地址的低位存储值的高位
|
2
|
little-endian
|
小尾顺序
|
地址的低位存储值的低位
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
voidmain() { inta=16,b; b=htons(a); cout<< "a=" <<a<<endl; cout<< "b=" <<b<<endl; 1 } |
处理器
|
操作系统
|
字节顺序
|
Alpha
|
全部
|
little-endian
|
HP-PA
|
NT
|
little-endian
|
HP-PA
|
UNIX
|
big-endian
|
Intelx86
|
全部
|
little-endian
|
MIPS
|
NT
|
little-endian
|
MIPS
|
UNIX
|
big-endian
|
PowerPC
|
NT
|
little-endian
|
PowerPC
|
非NT
|
big-endian
|
标签:
原文地址:http://www.cnblogs.com/zzyoucan/p/5143865.html