Possible Duplicate:
Const vs Static Const
What is the difference between static const and const?
For example:
static const int a=5;
const int i=5;
Is there any difference between them? When would you use one over the other?
What is the difference between
Is there any difference between them? When would you use one over the other? |
|||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
The difference is the linkage.
If the This enables the compiler to (potentially) perform further optimizations and informs the reader that the object is not used outside its translation unit. |
|||||||||||||
|
|
static determines visibility outside of a function or a variables lifespan inside. So it has nothing to do with const per se. const means that you're not changing the value after it has been initialised. static inside a function means the variable will exist before and after the function has ended. static outside of a function means that the scope of the symbol marked static is limited to that .c file and cannot be seen outside of it. |
|||
|
|
staticis the default behavior, IIRC. – Etienne de Martel Nov 1 '12 at 21:30