码迷,mamicode.com
首页 >  
搜索关键字:系统大小字节    ( 2个结果
C++ 判断系统大小字节序
bool IsLitterEndian(){ union UTest { std::uint16_t t; std::uint8_t c; } endianTest{ 0x01 }; return (endianTest.c == 0x01);} ...
分类:编程语言   时间:2018-06-13 17:23:13    阅读次数:165
写一个程序,判断运行程序的系统的是大字节序还是小字节序
#include<stdio.h> voidcheckSystem() { unioncheck { inti; charch; }c; c.i=1; if((char)1==c.ch) printf("系统是小字节序\n"); else printf("系统是大字节序\n"); } intmain(intargc,char*argv[]) { checkSystem(); return0; }写函数实现大小字节序转换。(需要写)
分类:其他好文   时间:2017-09-24 03:23:16    阅读次数:155
2条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!