我正在尝试找到一个 Qt 函数,该函数可以将字节转换为 int,其字节顺序与我在下面使用的相同。我觉得我肯定在这里重新发明了轮子,并且 Qt 库中必须有一些东西可以做到这一点。它存在吗?
// TODO: qt must have a built in way of converting bytes to int.
int IpcReader::bytesToInt(const char *buffer, int size)
{
if (size == 2) {
return
(((unsigned char)buffer[0]) << 8) +
(unsigned char)buffer[1];
}
else if (size == 4) {
return
(((unsigned char)buffer[0]) << 24) +
(((unsigned char)buffer[1]) << 16) +
(((unsigned char)buffer[2]) << 8) +
(unsigned char)buffer[3];
}
else {
// TODO: other sizes, if needed.
return 0;
}
}
// TODO: qt must have a built in way of converting int to bytes.
void IpcClient::intToBytes(int value, char *buffer, int size)
{
if (size == 2) {
buffer[0] = (value >> 8) & 0xff;
buffer[1] = value & 0xff;
}
else {
// TODO: other sizes, if needed.
}
}
编辑:数据总是大端(不管是什么操作系统),所以例如 101 是 [0, 0, 0, 101] 而 78000 是 [0, 1, 48, 176]。