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 |
|||
|
|
|
|
Don't think there's an answer for "which is always best" but, as Matthieu said
is type safe. My biggest pet peeve with #define, though is when debugging in MSVS you cannot watch the variable, it gives an error that the symbol cannot be found. |
||
|
|
|
|
The difference b/w static const and #define is that the former uses the memory and the later doesnot use the memory for storage. Secondly, you cannot pass the address of an #define whereas you can pass the address of a static const. Actually it is depending on what circumstance we are under, we need to select one amoung these two. Both are at their best under different circumstances. Please dont assume that one is better that other... :-) If that would have been the case, Dennis ritchie (sorry, if I have spelt the great man's name incorrectly) would have kept the best one alone... hahaha... :-) |
||
|
|