Which one is better to use among the below statements in C?
static const int var=5;
or
#define var 5
|
|
Generally speaking:
Because it respects scope and is type-safe. The only caveat I could see: if you want the variable to be possibly defined on the command line. There is still an alternative:
Whenever possible, instead of macros / ellipsis, use a type-safe alternative. If you really NEED to go with a macro (for example, you want It generally makes for lengthy names :) |
|||||||||
|
|
It depends on what you need the value for. You (and everyone else so far) omitted the third alternative:
Ignoring issues about the choice of name, then:
So, in most contexts, prefer the 'enum' over the alternatives. Otherwise, the first and last bullet points are likely to be the controlling factors - and you have to think harder if you need to satisfy both at once. If you were asking about C++, then you'd use option (1) - the static const - every time. |
|||||
|
|
In C, specifically? In C the correct answer is: use While it is beneficial to have the scoping and typing properties of a So, in C the choice should be determined by how you plan to use your constant. For example, you can't use a If this is important for you then it will determine your choice. Most of the time, you'll have no choice but to use In C++ |
|||||||||
|
|
If you can get away with it, However, at least in the original C standard, it isn't actually a constant. If you use However, never name a |
|||||
|
|
In C
ANSI C doesn't allow you to use
and even leave out |
|||||
|
|
The difference between If that would have been the case, Dennis Ritchie would have kept the best one alone... hahaha... :-) |
|||||
|
|
Another drawback of
Even this does not work with a const since the compiler does not see it as a constant:
I'd be happy to use typed |
|||||||
|
|
For example,
The preprocessor will replace it and the code won't compile. For this reason, traditional coding style suggest all constant |
||||
|
|
|
Don't think there's an answer for "which is always best" but, as Matthieu said
is type safe. My biggest pet peeve with |
||||
|
|
|
Incidentally, an alternative to
In many cases, it's useful to define enumerated types and create variables of those types; if that is done, debuggers may be able to display variables according to their enumeration name. One important caveat with doing that, however: in C++, enumerated types have limited compatibility with integers. For example, by default, one cannot perform arithmetic upon them. I find that to be a curious default behavior for enums; while it would have been nice to have a "strict enum" type, given the desire to have C++ generally compatible with C, I would think the default behavior of an "enum" type should be interchangeable with integers. |
||||
|
|
|
The definition
does not define a constant value! What it does is to allocate memory identified with the name "var". Using the identifier "var" you can not modify this memory. You still can modify the memory using another identifier:
This means the definition
is the only way to define a constant value which can not be modiefied by any means. |
||||
|