內存以字節爲單位進行逆序, 可用於大小端的轉換

#include <math.h>
#include <string>

template <typename T>
void ReverseOrder(T *_pStr, size_t _iSize)
{
    unsigned char *pcPoint = (unsigned char*)_pStr;
    int iCount = floor(_iSize / 2);
    for (int i = 0; i < iCount; i++)
    {
        std::swap(*(pcPoint + i), *(pcPoint + _iSize - 1 - i));
    }
}
相關文章
相關標籤/搜索