vote up 1 vote down star

if I have a struct say:

struct myStruct {
int someInt;
flot someFloat;
}

Is there any way to get a list of the member variables? ie. someInt, someFloat?

flag

80% accept rate

1 Answer

vote up 6 vote down check

No, it's not. Unlike Objective-C classes, structs don't save member names anywhere, they're only known to the compiler.

link|flag

Your Answer

Get an OpenID
or

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