Can the following macro bring problems?
#define sq(x) x*x
If yes, then how and why?please help.
|
Yes, it can present problems. Other than the obvious fact that macros don't respect namespaces at all (which means you can't call anything else
You should surround Another problem:
This is an inherent problem with macros, and is one reason inline functions should be preferred. |
|||
|
|
|
I'm not going to give you a straight answer (this looks like a homework question), but I'm going to give you an example that will hopefully make you think about it and come up with a correct answer:
When you run the program, the macro and the function give two different behaviors. Think about what a macro is, and what a function is. |
|||
|
As pointed out, you should wrap each use of the argument in parentheses to ensure correct behavior, for example, when the argument is something like
But there is another potential issue. Consider the following:
This is translated to:
Where as the intention was likely to increment One approach is just to be aware of this when calling it, but a better one is to put |
||||
|
|
|
While writing macros use brackets excessively. Rewrite the macro as follows
If you don't do this then you will have problems in cases where macro is used as To understand the problem do macro expansion and see. |
||||
|
|
|
All of these can cause trouble:
comparared with a function |
|||
|
|
|
For one, operator precedence would be messed up:
|
|||
|
|
(,). – Alok Save Nov 15 '12 at 16:08