struct {
char a;
int b;
} x;
Why would one define a struct like that instead of just declaring it as:
struct x {
char a;
int b;
};
|
|
|
In the first case, only variable In the second case, you do not define a variable - you just define a type
Usually, you'd use a more informative tag name and type name. It is perfectly legal and safe to use the same name for the structure tag (the first 'x') and the typedef name (the second 'x'). To a first approximation, C++ automatically 'creates a typedef' for you when you use the plain 'struct x { ... };' notation (whether or not you define variables at the same time). For fairly complete details on the caveats associated with the term 'first approximation', see the extensive comments below. Thanks to all the commentators who helped clarify this to me. |
|||||||||||
|
|
In the first case you are declaring a variable. In the second, a type. I think a better approach would be:
|
|||||||||||||||
|
|
The first is equivalent to
only that the struct type has no name. |
|||||
|
|
The first defines an variable named 'x' whose type is an unnamed structure. The second defines a structure named x, but doesn't define anything that uses it. |
|||
|
|
|
The two do different things:
Declares a variable
Declares a type
The second one is more common, because it can make declarations shorter, especially if you have to change your struct. The first is used if you're never going to need the structure again and don't want to pollute your namespace. So basically never. |
|||
|
|