gpt4 book ai didi

c++ - 用更好的替代品替换 reinterpret_cast?

转载 作者:太空狗 更新时间:2023-10-29 23:50:10 27 4
gpt4 key购买 nike

我在我的项目中有几个地方使用 reinterpret_cast 从流中读取/写入无符号整数。考虑以下功能:

size_t ReadSize(std::stringstream& stream) {
char buf[sizeof(size_t)];
stream.read(buf, sizeof(size_t));
return *(reinterpret_cast<size_t*>(buf));
}

void WriteSize(std::stringstream& stream, size_t n) {
stream.write(reinterpret_cast<char*>(&n), sizeof(size_t));
}

我开始对使用 reinterpret_cast 感到有点不自在,尽管我对它没有任何问题,所以我想知道,是否有更好的替代方案?假设我在流中只有 4 个字节应该代表这个整数。

static_cast 我认为这里也不适用。有什么建议吗?

附言我目前不关心使用 reinterpet_cast 可能引起的可移植性或其他特定于平台的问题。我正在为 Windows 机器编写此代码。

最佳答案

虽然 read(和 write)函数被指定为采用 char*,但实际上您不必传递数组的字符,只需在 read(或 write)调用中转换指向实际变量的指针即可:

std::size_t size;
if (stream.read(reinterpret_cast<char*>(&size), sizeof(size_t)))
return size;
return 0; // Or something else on error

在不相关的说明中,我建议您将流参数更改为 std::istream 引用,然后您可以将该函数用于任何输入流。

关于c++ - 用更好的替代品替换 reinterpret_cast?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33332889/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com