Is there any reason to prefer
#define MY_MACRO() ..stuff..
to
#define MY_MACRO ..stuff..
Don't use macros is not a valid answer :)
Thank you as usual!
|
Is there any reason to prefer
to
Don't use macros is not a valid answer :) Thank you as usual! |
||||
|
Replacement only occurrs for a function-like macro if the macro name is followed by a left parenthesis. So, the following all invoke the function-like macro
But this would not:
It depends on how you are using the macro and what it is used for as to whether or not this is important. Ideally, your macros will all have distinct names; if you reserve all-uppercase identifiers for macros, then it shouldn't matter whether you use an object-like or a function-like macro with zero parameters. Aesthetically, it's usually (but not always) cleaner not to have function-like macros that take zero parameters. |
|||
|
|
I prefer to use
vs
That is if the definition is used to call code, rather than just a simple constant value. |
|||||
|
|
Macro( x ) is preferrable when you have parameters to pass. If you are doing a simple "replace" then, IMO, its preferrable to use #define BLAH ... |
|||
|
|
[stl]and not[c++]too? It's true that macros should not be used most of the time in C++, but sometimes they can be extraordinarily helpful. – James McNellis Nov 22 '10 at 23:22