In my years of C++ (MFC) programming in I never felt the need to use typedef, so I don't really know what is it used for. Where should I use it? Are there any real situations where the use of typedef is preferred? Or is this really more a C-specific keyword?
|
1
|
|
||
|
|
|
|
Template Metaprogramming
Example: the type expression Simplifying Function Pointer Types
|
||||||
|
|
|
Real-world uses of typedef:
|
|||
|
|
|
Whenever it makes the source clearer or better to read. I use kind of typedef in C# for generics/templates. A "NodeMapping" is just better to read/use and understand then a lot of "Dictionary<string, XmlNode>". IMHO. So I'd recommend it for templates. |
||
|
|
|
|
use with function pointer Hide Function Pointer Declarations With a typedef
Only few programmers can tell that p is an "array of 10 pointers to a function returning void and taking a pointer to another function that returns void and takes no arguments." The cumbersome syntax is nearly indecipherable. However, you can simplify it considerably by using typedef declarations. First, declare a typedef for "pointer to a function returning void and taking no arguments" as follows:
Next, declare another typedef for "pointer to a function returning void and taking a pfv" based on the typedef we previously declared:
Now that we have created the pf_taking_pfv typedef as a synonym for the unwieldy "pointer to a function returning void and taking a pfv", declaring an array of 10 such pointers is a breeze:
|
|||
|
|
|
|
In Bjarne's book he states that you can use typedef to deal with portability problems between systems that have different integer sizes. (this is a paraphrase) On a machine where sizeof(int) is 4 you can
Then use int32 everywhere in your code. When you move to an implementation of C++ where sizeof(int) is 2, then you can just change the typdef
and your program will still work on the new implementation. |
||||||
|
|
|
typedef is useful in a lot of situations. Basically it allows you to create an alias for a type. When/if you have to change the type, the rest of the code could be unchanged (this depends on the code, of course). For example let's say you want to iter on a c++ vector
In the future you may think to change the vector with a list, because the type of operations you have to do on it. Without typedef you have to change ALL occurrences of vector within your code. But if you write something like this:
Now you just have to change one row of code (i.e from " typedef also saves you time when you have complex data structures which are very long to write (and difficult to read) |
||||||||
|
|
|
One good reason to use typedef is if the type of something may change. For example, let's say that for now, 16-bit ints are fine for indexing some dataset because for the foreseeable future, you'll have less than 65535 items, and that space constraints are significant or you need good cache performance. However, on the off chance that you need to use your program on a dataset with more than 65535 items, you want to be able to easily switch to a wider integer. Use a typedef, and you only have to change this in one place. |
||||||||
|
|
|
Just to provide some examples for the things said: STL containers.
It is not unusual to even use typedefs like
Another example: using shared pointers:
|
|||
|
|
|
|
... and you Don't Need a Typedef for an enum or a struct. Or do you?
can be better written as
Is that correct? What about C? |
||
|
