C语言将4个16进制char字符合并成一个int数 C语言将4个16进制char字符合并成一个int数 e = ((d<<24) & 0xff000000) | ((c<<16) & 0x00ff0000) | ((b<<8) & 0x0000ff00) | (a & 0x000000ff);