首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

redis2.6.9源码学习-Big_Endian&Little_Endian

2013-02-19 
redis2.6.9源码学习---Big_Endian&Little_Endian【用函数判断系统是Big?Endian还是Little?Endian】?bool?IsB

redis2.6.9源码学习---Big_Endian&Little_Endian
【用函数判断系统是Big?Endian还是Little?Endian】?bool?IsBig_Endian()?//如果字节序为big-endian,返回true;?//反之为???little-endian,返回false?{?????unsigned?short?test?=?0x1122;?????if(*(?(unsigned?char*)?&test?)?==?0x11)????????return?TRUE;?else?????return?FALSE;?}

?

热点排行