logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Linux大小端转换实现

实现#include <byteswap.h>#include <stdint.h>/*** @brief 8字节类型的字节序转化*/template<class T>typename std::enable_if<sizeof(T) == sizeof(uint64_t), T>::typebyteswap(T value)...

到底了