could any one explain what does
#define something (54)
mean? Why 54 is inside a bracket?
|
|
Parenthesis in that case are ignored. It's the same as writing:
They just help you like in math such as:
Is different from
|
|||||||||||||||
|
|
The reason you will often see the use of |
|||
|
The parentheses are superfluous. I cannot imagine a scenario in which |
|||||||||||||||||
|
|
It is in general a good idea to put any #define statement inside parenthesis. This is a good habit, and most daily programmers adhere to good habits. For instance:
if I use it like this:
I would expect to see the answer as 9, however due to operator precedence, the calculated answer would be 7. There are dozens of corner cases you could find like this (see http://www.gimpel.com/html/bugs.htm). This is why C++ programmers scream, "Macros are evil!". But we are C programmers, we are elite, we ain't scared. The same example:
This will give the expected result in all situations. Most programmers want their practices to apply in all situations, so it is easy to remember, easy to practice and easy to do. So in the simple case of
Just do it. It is a good idea. Learn to be part of the team, they are trying to help you. BTW, next they will say, "it should really be (54u)" |
||||
|
|
|
"()" are parenthesis and not [brackets]. It is essentially a no-op. Any time where 54 would be valid, (54) would be valid, just like (50+4) would be valid, or (27*2) or any other expression. Perhaps you can give us more information about this "quality standards" error you are seeing? Perhaps someone doesn't like the parens since they are unnecessary. |
|||
|
|
Probably it was written this way to make future changes easy; consider changing |
|||
|
|
|
Why would you use this
instead of this
I'm not sure what the answer to that is -- I think that this kind of use of
or
...they are still generally equivalent as "manifest constants". Without the parentheses, they would not be equivalent because the So if the
...you would get different results depending on whether or not the parentheses were used in the declaration:
Of course as long as the assigned value is a simple constant, as in your example, the presence of the parentheses makes no difference to the compiler. It is only for the benefit of the humans who are writing this code or who might modify this code in the future. By consistently applying this form of declaration, the author is attempting to reduce the occurrence of human error. |
||||
|
|