C++ 判断系统大小字节序

bool IsLitterEndian()
{
    union UTest
    {
        std::uint16_t t;
        std::uint8_t c;
    } endianTest{ 0x01 };
    return (endianTest.c == 0x01);
}

blog_di

posted @ 2018-06-13 16:51  天逸笛仙  阅读(237)  评论(0编辑  收藏  举报