Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can I use a forloop to get the property names of a "struct" in C? Or would I just have make a separate list? (Just the name I am looking for)

share|improve this question
2  
The member identifiers are for the human and compiler, the output really doesn't care about the name, just it's offset in the struct. Therefore, it ditches that information (i.e., C has no reflection.) – GManNickG Jun 20 '10 at 17:27
What are you trying to achieve? How do you want to handle different types? Some pseudo-code might help to give alternative suggestions. – Georg Fritzsche Jun 20 '10 at 17:37
I am working with function pointers and wondered if I could have just cut down on needing a second list of names. So I could just loop the list and compare it to a word to get the right callbacks. – Jay Jun 20 '10 at 17:42
For starters you could put structs in the list that contain both the name and the function pointer - or better use some existing dictionary solution to get name-to-function-pointer resolution. Also macros could reduce the work of defining these lists/dictionaries. – Georg Fritzsche Jun 20 '10 at 18:16

2 Answers

up vote 3 down vote accepted

You'll have to make a separate list. The C programming language doesn't have any introspection capabilities that would let you enumerate the property names of a struct.

share|improve this answer

for loops do not have the ability to enumerate struct members in C, no. In fact, once compiled, a C program really doesn't have any concept of the member names at all, it just uses offsets from the struct pointer.

share|improve this answer

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.