I have seen many programs consisting of structures like the one below
typedef struct
{
int i;
char k;
} elem;
elem user;
I have seen this many times. Why is it needed so often? Any specific reason or applicable area?
|
|
As Greg Hewgill said, the typedef means you no longer have to write Stuff like
becomes cleaner when you don't need to see the "struct" keyword all over the place, it looks more as if there really is a type called "Point" in your language. Which, after the Also note that while your example (and mine) omitted naming the
and then provide the
In this latter case, you cannot return the Point by value, since its declaration is hidden from users of the header file. This is a technique used widely in GTK+, for instance. |
|||||||||||||||||
|
|
From an old article by Dan Saks (http://www.ddj.com/cpp/184403396?pgno=3):
The linked article also has a discussion about how the C++ behavior of not requireing a |
||||
|
|
|
Using a
|
|||||||||||||
|
|
It's amazing how many people get this wrong. PLEASE don't typedef structs in C, it needlessly pollutes the global namespace which is typically very polluted already in large C programs. Also, typedef'd structs without a tag name are a major cause of needless imposition of ordering relationships among header files. Consider:
With such a definition, not using typedefs, it is possible for a compiland unit to include foo.h to get at the Also, since the namespaces are different between the tag names and the member names, it is possible to write very readable code such as:
Since the namespaces are separate, there is no conflict in naming variables coincident with their struct tag name. If I have to maintain your code, I will remove your typedef'd structs. |
|||||||||||||||
|
|
One other good reason to always typedef enums and structs results from this problem I have encountered with the Freescale Codewarrior compiler suite:
enum EnumDef
{
FIRST_ITEM,
SECOND_ITEM
};
struct StructDef
{
enum EnuumDef MyEnum;
unsigned int MyVar;
} MyStruct;
Notice the typo in EnumDef in the struct (Enu**u**mDef)? This compiles without error (or warning) and is (depending on the literal interpretation of the C Standard) correct. The problem is that I just created an new (empty) enumeration definition within my struct. I am not (as intended) using the previous definition EnumDef. With a typdef similar kind of typos would have resulted in a compiler errors for using an unknown type:
typedef
{
FIRST_ITEM,
SECOND_ITEM
} EnumDef;
typedef struct
{
EnuumDef MyEnum; /* compiler error (unknown type) */
unsigned int MyVar;
} StructDef;
StrructDef MyStruct; /* compiler error (unknown type) */
I would advocate ALWAYS typedef'ing structs and enumerations. Not only to save some typing (no pun intended ;)), but because it is safer. |
|||
|
|
|
the name you (optionally) give the struct is called the tag name and, as has been noted, is not a type in itself. To get to the type requires the struct prefix. GTK+ aside, I'm not sure the tagname is used anything like as commonly as a typedef to the struct type, so in C++ that is recognised and you can omit the struct keyword and use the tagname as the type name too:
|
|||
|
|
|
At all, in C language, struct/union/enum are macro instruction processed by the C language preprocessor (do not mistake with the preprocessor that treat "#include" and other) so :
struct b is expended as something like this :
and so, at compile time it evolve on stack as something like: b: int ai int i int j that also why it's dificult to have selfreferent structs, C preprocessor round in a déclaration loop that can't terminate. typedef are type specifier, that means only C compiler process it and it can do like he want for optimise assembler code implementation. It also dont expend member of type par stupidly like préprocessor do with structs but use more complex reference construction algorithm, so construction like :
is permited and fully functional. This implementation give also access to compilator type conversion and remove some bugging effects when execution thread leave the application field of initialisation functions. This mean that in C typedefs are more near as C++ class than lonely structs. |
|||
|
|
|
Use of typedef in C++ makes quite a bit of sense. It can almost be necessary when dealing with templates that require multiple and/or variable parameters. The typedef helps keep the naming straight. Not so in the C programming language. The use of typedef most often serves no purpose but to obfuscate the data structure usage. Since only { struct (6), enum (4), union (5) } number of keystrokes are used to declare a data type there is almost no use for the aliasing of the struct. Is that data type a union or a struct? Using the straight forward non-typdefed declaration lets you know right away what type it is. Notice how Linux is written with strict avoidance of this aliasing nonsense typedef brings. The result is a minimalist and clean style. |
|||||||||
|