Can someone explain the difference between a static and const variable?
feedback
|
|
A constant value cannot change. A static variable exists to a function, or class, rather than an instance or object. These two concepts are not mutually exclusive, and can be used together. | |||||||
feedback
|
|
A static variable can get an initial value only one time. This means that if you have a code such as " A constant variable has its value constant in whole of the code. For example if you set the constant variable such as " | ||||
|
feedback
|
|
Constants can't be changed, static variables have more to do with how they are allocated and where they are accessible. Check out this site. | |||
|
feedback
|
|
Static variables in the context of a class are shared between all instances of a class. In a function, it remains a persistent variable, so you could for instance count the number of times a function has been called. When used outside of a function or class, it ensures the variable can only be used by code in that specific file, and nowhere else. Constant variables however are prevented from changing. A common use of const and static together is within a class definition to provide some sort of constant.
| |||
|
feedback
|
|
The short answer: A A C99 borrowed the use of Also, with C++0x, the use of the static keyword is deprecated when declaring objects in namespace scope will be deprecated. The longer answer: More on the keywords than you wanted to know (right from the standards): C99
C++ Has the same semantics mostly except as noted in the short answer. Also, there are no parameter qualifying
There are a few more nuances of C++'s | |||||||||||||
feedback
|
|
static means local for compilation unit (i.e. a single C++ source code file), or in other words it means it is not added to a global namespace. you can have multiple static variables in different c++ source code files with the same name and no name conflicts. const is just constant, meaning can't be modified. | |||
feedback
|
|
Static variables are common across all instances of a type. constant variables are specific to each individual instance of a type but their values are known and fixed at compile time and it cannot be changed at runtime. unlike constants, static variable values can be changed at runtime. | |||
|
feedback
|
|
const means constant and their values are defined at compile time rather than explicitly change it during run time also, the value of constant cannot be changed during runtime However static variables are variables that can be initialised and changed at run time. However, static are different from the variables in the sense that static variables retain their values for the whole of the program ie their lifetime is of the program or until the memory is de allocated by the program by using dynamic allocation method. However, even though they retain their values for the whole lifetime of the program they are inaccessible outside the code block they are in For more info on static variables refer here | |||
|
feedback
|
|
Constant variables cannot be changed. Static variable are private to the file and only accessible within the program code and not to anyone else. | |||
|
feedback
|
|
simple and short answer is memory is allocated for static and const only once. but in const that is for only one value where as in static values may change but memory area is same till the end of the programme. | |||
|
feedback
|
|
static value may exists into a function and can be used in different forms and can have different value in the program. Also during program after increment of decrement their value may change but const in constant during the whole program. | |||
|
feedback
|