I wonder if typedef and #define the same in c?
|
|
|
|
|
|
|
No.
You can use one or the other to achieve the same effect, but it's better to use the proper one for your needs
When things get "hairy", using the proper tool makes it right
|
|||
|
|
|
|
They are very different, although they are often used to implement custom data types (which is what I am assuming this question is all about). As pmg mentioned, One of the main differences (at least when it comes to defining data types) is that
Here, the compiler sees variable x as an int, but variable y as a data type called 'tdType' that happens to be the same size as an int. If you wrote a function that took a parameter of type defType, the caller could pass a normal int and the compiler wouldn't know the difference. If the function instead took a parameter of type tdType, the compiler would ensure that a variable of the proper type was used during function calls. Also, some debuggers have the ability to handle |
||
|
|
|
|
No, they are not the same. For example:
After preprocessing, that line expands to
Hopefully you see the problem; only Contrast that with
In this case, both There are whole classes of typedefs that cannot be emulated with a preprocessor macro, such as pointers to functions or arrays:
Try doing that with a preprocessor macro. |
||
|
|
|
|
Also, some things can be done with Examples:
.
.
|
||||||||||
|
|
|
No. |
||||||
|
|
|
AFAIK, No. 'typedef' helps you setup a "alias" to an existing data type. For eg. typedef char chr; #define is a preprocessor directive used to define macros or general pattern subsitutions. For eg. #define MAX 100, substitutes all occurences of MAX with 100 |
||
|
|
