Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a static array of struct MyStruct. I need to access the array by index, but I also need every MyStruct to know what its index is. I currently use the following code:

enum { INDEX_FOO=0, INDEX_BAR, INDEX_BAZ };
struct MyStruct{ int index; const char* name; /* other data */ };
struct MyStruct values[]={
  { INDEX_FOO, "foo" /* ... */ },
  { INDEX_BAR, "bar" /* ... */ },
  { INDEX_BAZ, "baz" /* ... */ },
};
// requirement: for all i in {0,1,2}: values[i].index==i

which however duplicates the enum indices. Is there a way to do this without having to keep the enum and the array in sync?

share|improve this question

1 Answer

You might consider X-macros for this.

Something like:

blah.x

X(FOO, "foo")
X(BAR, "bar")
X(BAZ, "baz")

main.c

#define X(a,b) INDEX_#a,
enum {
#include "blah.x"
};
#undef X

#define X(a,b) { INDEX_#a, b },
struct MyStruct values[]={
#include "blah.x"
};
#undef X
share|improve this answer
+1 for mentioning the existence of X-macros – ouah Feb 23 '12 at 11:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.