Is it better to use static const vars than #define preprocessor? Or maybe it depends on the context?
What are advantages/disadvantages for each method?
|
Is it better to use What are advantages/disadvantages for each method? |
|||||||||||||||||||||
|
|
Personally, I loathe the preprocessor, so I'd always go with const. The main advantage to a #define is that it requires no memory to store in your program, as it is really just replacing some text with a literal value. It also has the advantage that it has no type, so it can be used for any integer value without generating warnings. Advantages of "const"s are that they can be scoped, and they can be used in situations where a pointer to an object needs to be passed. I don't know exactly what you are getting at with the "static" part though. If you are declaring globally, I'd put it in an anonomous namespace instead of using static. For example
|
|||||||||||||||
|
|
Pros and cons to everything, depending on usage:
As a general rule, I use |
|||||
|
|
If this is a C++ question and it mentions And, finally, in C++ String constants, BTW, are one example of such an exception. With
P.S. Again, just in case, when someone mentions |
||||
|
|
|
Using a static const is like using any other const variables in your code. This means you can trace wherever the information comes from, as opposed to a #define that will simply be replaced in the code in the pre-compilation process. You might want to take a look at the C++ FAQ Lite for this question: http://www.parashift.com/c++-faq-lite/newbie.html#faq-29.7 |
|||
|
|
Usually you should prefer static consts. It has no disadvantage. The prprocessor should mainly be used for conditional compilation (and sometimes for really dirty trics maybe). |
|||
|
|
|
Please see here: static const vs define usually a const declaration (notice it doesn't need to be static) is the way to go |
|||
|
|
|
Defining constants by using preprocessor directive |
|||
|
|