Why would I want to do this?
typedef struct Frame_s
{
int x;
int y;
int z;
} Frame_t;
Also if I want to create an object what do I use Frame_s or Frame_t?
|
|
You would use With So these are equivalent sentences:
I would use:
And always declare my vars like this:
Confusion usually comes from places where you use that sentence in a C++ piece of code. If you use C++ with that
But if you use a plain C compiler, then |
|||
|
|
|
Either you use Usually you do such a typedef so that you can use the typedefed name, Aside from |
|||
|
|
|
Another aspect of
you would avoid that some code that may use the same name One very bad traditional example that comes in mind for this is "sys/stat.h" in POSIX: it defines a
|
|||
|
|
|
To declare a value of the struct, you could use either |
|||||
|
|
The code start to get obfuscated. Function definitions become long etc. With this
Clean code! Makes a big difference in maintenance... |
|||
|
|
|
So these two declarations are equivalent:
In fact, you could now leave
|
|||
|
|