gpt4 book ai didi

c - 如何命名 C 结构中的未命名字段?

转载 作者:太空狗 更新时间:2023-10-29 17:24:50 25 4
gpt4 key购买 nike

让我们考虑一下这个结构:

struct {
int a;
int _reserved_000_[2];
int b;
int _reserved_001_[12];
int c;
};

保留字段不应该被读取或写入。我的结构代表一个描述符,用于寻址 FPGA,其中我有很多 reserved 字段。我最终将它们命名为随机命名,因为多年后最初的升序编号不再具有任何意义。

所以我现在:

struct {
int a;
int _reserved_3hjdds1_[2];
int b;
int _reserved_40iuljk_[12];
int c;
};

只有空字段会更方便:

struct {
int a;
int;
int b;
int;
int c;
};

但它不起作用。

还有什么其他方法可以避免为 reserved 字段找到唯一名称?

最佳答案

应该可以通过一些宏观魔法来实现你想要的:

#include <stdint.h>

#define CONCAT(x, y) x ## y
#define EXPAND(x, y) CONCAT(x, y)
#define RESERVED EXPAND(reserved, __LINE__)

struct
{
uint32_t x;
uint32_t RESERVED;
uint16_t y;
uint64_t RESERVED[10];
} s;

这为您提供了诸如 reserved11reserved13 之类的标识符,但名称显然无关紧要。

关于c - 如何命名 C 结构中的未命名字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42837863/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com