大端存储:字数据的高字节存储在低地址中 小端存储:字数据的低字节存储在低地址中 用代码判断: #include <iostream> using namespace std; int main() { int a = 0x1234; //由于int和char的长度不同,借助int型转换成char型,只会留下低地址的部分 char c = (char)(a); if (c == 0x12) cout << "big endian" << endl; else if(c == 0x34) cout << "little endian" << endl; }