Are the following equivalent in C?
// #1
struct myStruct {
int id;
char value;
};
typedef struct myStruct Foo;
// #2
typedef struct {
int id;
char value;
} Foo;
If not, which one should I use and when?
|
|
No, they're not exactly equivalent. In the first version In the second version, Although both |
|||||||||
|
|
The second option cannot reference itself. For example:
|
|||
|
|
|
The first form allows you to refer to the struct before the type definition is complete, so you can refer to the struct within itself or have mutually dependent types:
or
You can combine the two like so:
|
||||
|
|