有没有办法在C中循环使用不同类型元素的结构?

时间:2009-11-23 17:44:55

标签: c struct loops

我的结构有点像这样

typedef struct {
  type1 thing;
  type2 thing2;
  ...
  typeN thingN;
} my_struct 

如何在循环中枚举struct childrens,例如while或for?

3 个答案:

答案 0 :(得分:41)

我不确定你想要实现什么,但你可以使用 X-Macros 并让预处理器对结构的所有字段进行迭代:

//--- first describe the structure, the fields, their types and how to print them
#define X_FIELDS \
    X(int, field1, "%d") \
    X(int, field2, "%d") \
    X(char, field3, "%c") \
    X(char *, field4, "%s")

//--- define the structure, the X macro will be expanded once per field
typedef struct {
#define X(type, name, format) type name;
    X_FIELDS
#undef X
} mystruct;

void iterate(mystruct *aStruct)
{
//--- "iterate" over all the fields of the structure
#define X(type, name, format) \
         printf("mystruct.%s is "format"\n", #name, aStruct->name);
X_FIELDS
#undef X
}

//--- demonstrate
int main(int ac, char**av)
{
    mystruct a = { 0, 1, 'a', "hello"};
    iterate(&a);
    return 0;
}

这将打印:

mystruct.field1 is 0
mystruct.field2 is 1
mystruct.field3 is a
mystruct.field4 is hello

您还可以在X_FIELDS ...

中添加要调用的函数的名称

答案 1 :(得分:3)

没有安全的方法来枚举结构的成员,除非结构的确切内容是已知的,即使在这种情况下你也要小心结构对齐/填充之类的东西。

根据您的问题,拥有一个结构数组可能更安全。

答案 2 :(得分:0)

由于你打算在一个循环中处理它们,我认为不同的类型至少可以被对待,或者具有相似的大小。

如果是这种情况,您的选择将取决于元素的大小。如果它们都是相同的,你可以检索一个指向结构的指针,将其转换为你的一个类型,并递增它直到你“用完”整个结构。

PS:确实,这不是一个非常安全的做法。这种情况使用OO方法处理得更好,利用多态性。否则,如前所述,无法保证对齐。