如何在C中将结构体转换为字节数组?
可能的重复:
如何在 C 中将 struct 转换为 char 数组< br> 将 C 结构体编写为一个文件(C 的序列化)
我正在寻找将结构转换为 C 中的字节数组,但我对此感到困惑。请告诉我实现这一目标的正确方法。提前致谢。
Possible Duplicates:
How to convert struct to char array in C
Portable way of writing a C struct to a file (Serialisation for C)
I am looking for converting a structure to byte array in C and i was confused in doing that.Please show me a right way in achieving that. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
结构体是一个字节数组。它从
&mystruct
开始,长度为sizeof(mystruct_type)
字节。如果二进制文件太长或包含间隙,请检查
#pragma pack
设置。哈马罗
A structure is a byte array. it starts at
&mystruct
and has the length ofsizeof(mystruct_type)
bytes.If the binaries are to long or do contain gaps, check the
#pragma pack
settings.hth
Maro