如何在C中将结构体转换为字节数组?

发布于 2024-11-06 12:16:09 字数 412 浏览 1 评论 0原文

可能的重复:
如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葮薆情 2024-11-13 12:16:09

结构体是一个字节数组。它从 &mystruct 开始,长度为 sizeof(mystruct_type) 字节。

如果二进制文件太长或包含间隙,请检查#pragma pack 设置。

哈马罗

A structure is a byte array. it starts at &mystruct and has the length of sizeof(mystruct_type) bytes.

If the binaries are to long or do contain gaps, check the #pragma pack settings.

hth

Maro

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文