c – 将int的地址转换为char指针的正确方式

前端之家收集整理的这篇文章主要介绍了c – 将int的地址转换为char指针的正确方式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我需要从ifstream读取int
int myInt = 0;
fileStream.read(reinterpret_cast<char*>(&myInt),sizeof(int));

正在使用reinterpret_cast< char *>正确的方式来完成这个

解决方法

is using reinterpret_cast correct way to accomplish that?

是.喜欢c风格的风格,而不是c风格的风格.

正如评论中所建议的,使用read method function的更好的方法是:

int myInt = 0;
fileStream.read(reinterpret_cast<char*>(&myInt),sizeof(myInt));
原文链接:https://www.f2er.com/c/112084.html

猜你在找的C&C++相关文章