我试图在双精度上从大端变为小端。一种方法是使用
double val, tmp = 5.55;
((unsigned int *)&val)[0] = ntohl(((unsigned int *)&tmp)[1]);
((unsigned int *)&val)[1] = ntohl(((unsigned int *)&tmp)[0]);
但后来我收到一个警告:“取消引用类型双关指针会破坏严格的别名规则”,我不想关闭这个警告。
另一种方法是:
#define ntohll(x) ( ( (uint64_t)(ntohl( (uint32_t)((x << 32) >> 32) )) << 32) | ntohl( ((uint32_t)(x >> 32)) ) )
val = (double)bswap_64(unsigned long long(tmp)); //or
val = (double)ntohll(unsigned long long(tmp));
但随后失去了小数点。任何人都知道在不使用 for 循环的情况下交换双精度位的好方法吗?