Why are there two ways to "declare" constants in CPP?
Which is better, or should I write, which of them should I use when?
#define MYCON 100
const int MYCON=100
feedback
|
|
Short rule: For conditional compilation (like different code fragments for DEBUG and RELEASE) use | |||||
feedback
|
|
Using Features of preprocessor symbols:
Using
It is widely considered better to use | |||
|
feedback
|
|
In the original version of C,
Some examples: Class header wrappers to prevent multiple class declarations:
Conditional Compilation:
| |||
|
feedback
|