由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - reinterpret cast的问题
相关主题
请教个static_cast vs reinterpret_cast的问题。size不固定的struct怎么定义呀?
const_cast问题关于C++中一个Class的大小 (转载)
c++ cast problem大家看看这个简单的qsort排序的问题
问题: C++ static_cast between int and float有关objec access path的问题
问一个C++文件读取的问题C++ cast 小结
C++ interview questions helphow to change a variable's value in a const function
serialization 到底该怎么理解啊?C++ 的 问题
pointer overflow有段c++代码看不懂
相关话题的讨论汇总
话题: cast话题: salary话题: int话题: sizeof
进入Programming版参与讨论
1 (共1页)
t******r
发帖数: 209
1
看到一个将类的成员serialize到文件中:
out.write(reinterpret_cast(&year),sizeof(int));
out.write(reinterpret_cast(&salary),sizeof(int));
year, salary是int类型
请问为啥一定要把他们用reinterpret_cast输出呢?直接out << year << salary不行?
多些!!!
t****t
发帖数: 6806
2
binary vs text

行?

【在 t******r 的大作中提到】
: 看到一个将类的成员serialize到文件中:
: out.write(reinterpret_cast(&year),sizeof(int));
: out.write(reinterpret_cast(&salary),sizeof(int));
: year, salary是int类型
: 请问为啥一定要把他们用reinterpret_cast输出呢?直接out << year << salary不行?
: 多些!!!

1 (共1页)
进入Programming版参与讨论
相关主题
有段c++代码看不懂问一个C++文件读取的问题
一个const_cast问题C++ interview questions help
看道c++题: brianbenchserialization 到底该怎么理解啊?
为什么cpp会有 const_cast ?pointer overflow
请教个static_cast vs reinterpret_cast的问题。size不固定的struct怎么定义呀?
const_cast问题关于C++中一个Class的大小 (转载)
c++ cast problem大家看看这个简单的qsort排序的问题
问题: C++ static_cast between int and float有关objec access path的问题
相关话题的讨论汇总
话题: cast话题: salary话题: int话题: sizeof