In C, shall I prefer constants over defines? I've reading a lot of code lately, and all of the examples make heavy use of defines.
feedback
|
|
No, in general you should not use const-qualified objects in C to create names constants. In order to create a named constant in C you should use either macros ( In C language the notions of constant and constant expression are defined very differently from C++. In C constant means a literal value, like
Constants in C can be used to build constant expressions. However, since const-qualified objects of any type are not a constants in C, they cannot be used in constant expressions, and, consequently, you cannot use const-qualified objects where constant expressions are required. For example, the following is not a constant
and since the above
and it cannot be used as a case label
i.e it cannot be used anywhere a constant is required. This might seem counter-intuitive, but this is how C the language is defined. This is why you see these numerous Of course, in situations when a const-qualified object works for you, i.e. it does what you want it to do, it is indeed superior to macros in many ways, since it is scoped and typed. You should probably prefer such objects where applicable, however in general case you'll have to take into account the above. | |||||||||||||||||
feedback
|
|
Constants should be preferred over
| |||||||||||||
feedback
|
|
Maybe I have been using them wrong but, at least in gcc, you can't use constants in case statements.
| |||
|
feedback
|
|
define can be used for many purposes(very loose) and should be avoided if you can substitute that with const, which define a variable and you can do a lot more with it. In cases like below, define has to be used
An example where you have to use define over const is when you have version number say 3 and you want version 4 to include some methods that is not available in version 3
| |||
|
feedback
|
|
A lot of people here are giving you "C++ style" advice. Some even say the C++ arguments apply to C. That may be a fair point. (Whether it is or not feels kind of subjective.) The people who say But these are mostly minor points and personally, I think in truth there is relatively minor consequence to going either way. It's a matter of style, and I think different groups of people will give you different answers. In terms of common usage, historical usage, and most common style, in C, it's a lot more typical to see But I'm surprised no one has suggested a middle ground solution, that "feels right" in both languages: if it fits into a group of integer constants, use an | |||
|
feedback
|
|
Though this question is specific to C, I guess it is good to know this:
works in C, but not in C++ One of the reasons to use | |||
|
feedback
|
|
Defines have been part of the language longer than constants, so a lot of older code will use them because defines where the only way to get the job done when the code was written. For more recent code it may be simply a matter of programmer habit. Constants have a type as well as a value, so they would be preferred when it makes sense for your value to have a type, but not when it is typeless (or polymorphic). | |||
|
feedback
|
|
If it's something that isn't determined programmatically, I use | |||
|
feedback
|
|
Apart from the excellent reasons given by AndreyT for using DEFINES rather than constants in "C" code there is another more pragmatic reason for using DEFINES. DEFINES are easy define and use from (.h) header files, which is where any experienced C coder would expect to find constants defined. Defining consts in header files is not quite so easy -- its more code to avoid duplicate definitions etc. Also the "typesafe" arguments are moot most compilers will pick up glaring errors suchh as assing a string to and int, or, will "do the right thing" on a slight mismatch such as assigning an integer to a float. | |||
|
feedback
|
|
Macros (defines) can be used by the pre-processor and at compile time, constants cannot. You can do compile-time checks to make sure a macro is within a valid range (and #error or #fatal if it isn't). You can use default values for a macro if it hasn't already been defined. You can use a macro in the size of an array. A compiler can optimize with macros better than it can with constants:
Most of my work is with embedded processors that don't have amazing optimizing compilers. Maybe gcc will treat SIZE_A like a macro at some optimization level. | |||
|
feedback
|