I cannot understand what is the difference between:
#define WIDTH 10
and
int width = 10;
What are the benefits of using the first or the second?
|
|
Well, there is a great difference. You can change the value of Summing it up: the value of |
|||||||
|
The first is an Macro while second is an Variable declaration.
The variable declaration is evaluated by the compiler itself. It tells the compiler to declare a variable named
Usually, it is recommended to use compile time constant variables over
There are a number of reasons for selecting compile time constants over Scope Based Mechanism: The scope of Avoiding Weird magical numbers during compilation errors: If you are using Ease of Debugging: Also for same reasons mentioned in #2, while debugging |
|||||||||||||
|
|
When you #define a macro (like WIDTH here), the preprocessor will simply do a text-replacement before the program is passed to the compiler. i.e. wherever you used But when you do |
|||||||||||||
|
|
First a short background: before getting compiled, a In your case, that
and
is that the first one can be seen as a |
||||
|
|
|
One So one is nothing more than a label for a constant, the other is a variable at run time. You can use preprocessors for faster execution, since variables need to be allocated on the stack, at the cost of not being mutable at run time. You usually use preprocessors for things that don't need to change at run time, though be careful preprocessors can be a bit tricky to debug, since they can actually manipulate the source code before its handed of to the compiler, leading to very subtle bugs, that may or may not be apparent examining the source code. |
||||
|
|