首页 > 代码库 > 整型变量(int)与字节数组(byte[])的相互转换

整型变量(int)与字节数组(byte[])的相互转换

// int2byte.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <Windows.h>

/*
#define MAKEWORD(a, b)	((WORD)(((BYTE)(((DWORD_PTR)(a))&nbsp;&&nbsp;0xff)) | ((WORD)((BYTE)(((DWORD_PTR)(b)) & 0xff))) << 8))
#define MAKELONG(a, b)	((LONG)(((WORD)(((DWORD_PTR)(a))&nbsp;&&nbsp;0xffff)) | ((DWORD)((WORD)(((DWORD_PTR)(b)) & 0xffff))) << 16))
#define LOWORD(l)		((WORD)(((DWORD_PTR)(l))&nbsp;&&nbsp;0xffff))
#define HIWORD(l)		((WORD)((((DWORD_PTR)(l)) >> 16)&nbsp;&&nbsp;0xffff))
#define LOBYTE(w)		((BYTE)(((DWORD_PTR)(w))&nbsp;&&nbsp;0xff))
#define HIBYTE(w)		((BYTE)((((DWORD_PTR)(w)) >> 8)&nbsp;&&nbsp;0xff))
*/

// ==========================================================
//   Big Endian / Small Endian utility functions
// ==========================================================
BOOL IsSmallEndian()
{
	DWORD wd = 0x22; 
	if( *((BYTE *)&wd) == 0x22 )  // Small Endian
		return TRUE;
	else
		return FALSE;
}

void SwapShort(WORD *sp) {
		BYTE *cp = (BYTE *)sp, t = cp[0]; cp[0] = cp[1]; cp[1] = t;
}

void SwapLong(DWORD *lp) {
		BYTE *cp = (BYTE *)lp, t = cp[0]; cp[0] = cp[3]; cp[3] = t;
		t = cp[1]; cp[1] = cp[2]; cp[2] = t;
}

// int 2 byte
BYTE *Int2Byte(int nVal)
{
	BYTE *pByte = new BYTE[4];
	for (int i = 0; i<4;i++)
	{
		pByte[i] = (BYTE)(nVal >> 8*(3-i) & 0xff);
	}
	return pByte;
}

// byte 2 int
int Byte2Int(BYTE *pb)
{
	// assume the length of pb is 4
	int nValue=http://www.mamicode.com/0;>