是否有通过在C diferent类型的元素一个struct任何方式循环? [英] Is there any way to loop through a struct with elements of diferent types in C?

查看:148
本文介绍了是否有通过在C diferent类型的元素一个struct任何方式循环?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的结构是一些像这样

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

如何枚举结构儿童在一个循环中,如同时,还是?
先谢谢了。

how to enumerate struct childrens in a loop such as while, or for? thanks in advance.

推荐答案

我不知道你想达到什么,但你可以使用 X-宏 并有preprocessor做迭代通过结构的所有字段:

I'm not sure what you want to achieve, but you can use X-Macros and have the preprocessor doing the iteration over all the fields of a structure:

//--- 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调用...

You can also add the name of the function to be invoked in the X_FIELDS...

这篇关于是否有通过在C diferent类型的元素一个struct任何方式循环?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆