如何将结构放入联合中

发布于 2024-08-29 22:54:09 字数 207 浏览 4 评论 0原文

我有一个 union X。它的大小是 64 位。如果我想访问这些 64 位,我该如何编写(如果可能)其声明:

 1. 4 int16_t: p,q,r,s;
 2. Array of 4 int16_t: a[4]
 3. 2 int32_t: n, m;
 4. Array of 2 int32_t: b[2]
 5. 1 int64_t z;

I have an union X. It's size is 64bits. How can I write (if possible) its declaration if I want to access those 64 bits as:

 1. 4 int16_t: p,q,r,s;
 2. Array of 4 int16_t: a[4]
 3. 2 int32_t: n, m;
 4. Array of 2 int32_t: b[2]
 5. 1 int64_t z;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

神爱温柔 2024-09-05 22:54:09

类似的东西

union thingie_type {
    struct { int16_t p,q,r,s; };
    int16_t a[4];
    struct { int32_t n,m; };
    int32_t b[2];
    int64_t z;
};

something like

union thingie_type {
    struct { int16_t p,q,r,s; };
    int16_t a[4];
    struct { int32_t n,m; };
    int32_t b[2];
    int64_t z;
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文