In C++, is there any difference between:
struct Foo { ... };
and
typedef struct { ... } Foo;
|
19
|
|||
|
|
|
In C++, there is no difference. It's a holdover from C, in which it made a difference. In C, there are two different namespaces of types: a namespace of struct/union/enum tag names and a namespace of typedef names. If you just said
You would get a compiler error, because
Any time you want to refer to a
Now both
is just an abbreviation for the declaration and typedef. Finally,
declares an anonymous structure and creates a typedef for it. Thus, with this construct, it doesn't have a name in the tag namespace, only a name in the typedef namespace. This means it also can't be forward-declared. If you want to make a forward declaration, you have to give it a name in the tag namespace. In C++, all struct/union/enum/class declarations act like they are implicitly typedef'ed, as long as the name is not hidden by another declaration with the same name. See Michael Burr's answer for the full details. |
||||||||||||
|
|
|
There is no difference in C++, but I believe in C it would allow you to declare instances of the struct Foo without explicitly doing:
|
||
|
|
|
|
There is a difference, but subtle. Look at it this way:
So, a typedef always is used as an placeholder/synonym for another type. |
|||
|
|
|
|
One more important difference: typedefs cannot be forward declared. So for the typedef option you must #include the file containing the typedef, meaning everything that #includes your .h also includes that file whether it directly needs it or not, and so on. It can definitely impact your build times on larger projects. Without the typedef, in some cases you can just add a forward declaration of "struct Foo;" at the top of your .h file, and only #include the struct definition in your .cpp file. |
||
|
|
|
In this DDJ article, Dan Saks explains one small area where bugs can creep through if you do not typedef your structs (and classes!):
|
||||
|