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?
|
|
|||
|
|
Template Metaprogramming
Example: the type expression Simplifying Function Pointer Types
|
|||||||||
|
|
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:
[update] As per comment - where to put them? The last example - using Put it another way: If there is a shared_ptr you probably should use the type only through a shared_ptr, so separating the declarations doesn't make much sense. (Yes, xyzfwd.h is a pain. I'd use them only in hotspots - knowing that hotspots are hard to identify. Blame the C++ compile+link model...) Container typedefs I usually use where the container variable is declared - e.g. locally for a local var, as class members when the actual container instance is a class member. This works well if the actual container type is an implementation detail - causing no additional dependency. If they become part of a particular interface, they are declared together with the interface they are used with, e.g.
That gets problematic when the type is a binding element between different interfaces - i.e. the same type is needed by multiple headers. Some solutions:
I agree that the two latter aren't that great, I'd use them only when I get into trouble (not proactively). |
|||||||||
|
|
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. |
|||||||||||
|
|
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:
|
||||
|
|
|
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. |
|||||||||||
|
|
There are also times when I use an array of bytes. Now, an array of bytes could mean a lot of things. |
|||
|
|
|
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. |
|||
|
|
|
... 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? |
|||
|