先把那四个字节包装成 int,然后再对该 int 进行转换(程序假设 int 是 32-bit 数据):include <stdio.h> include <math.h> /* C 什么时候才会像 Java 那样提供 byte 数据类型? 算了。 我们自己来吧 */ typedef unsigned char byte;int fourBytesToInt( byte b1, byte b2, byte b3, b...