In java, what's de difference between:
private final static int NUMBER = 10;
and
private final int NUMBER = 10;
both are private and both are final, the difference is the static attribute.
What's better to use?
|
|
|||
|
|
|
A static variable stays in the memory. A non-static var is being initialized each time you call the constructor. I think it's better to use
|
||
|
|
In general, That means you can reference a static variable without having ever created an instances of the type, and any code referring to the variable is referring to the exact same data. Compare this with an instance variable: in that case, there's one independent version of the variable per instance of the class. So for example:
prints out 10: You can refer to static members via references, although it's a bad idea to do so. If we did:
then that would print out 20 - there's only one variable, not one per instance. It would have been clearer to write this as:
That makes the behaviour much more obvious. Modern IDEs will usually suggest changing the second listing into the third. There is no reason to have a declaration such as
If it cannot change, there is no point having one copy per instance. |
||||
|
|
|
static means "associated with the class"; without it, the variable is associated with each instance of the class. If it's static, that means you'll have only one in memory; if not, you'll have one for each instance you create. static means the variable will remain in memory for as long as the class is loaded; without it, the variable can be gc'd when its instance is. |
||
|
|
|
|
very little, and staticThere isn't much difference as they are both constants. For most class data objects, static would mean something associated with the class itself, there being only one copy no matter how many objects were created with new. Since it is a constant, it may not actually be stored in either the class or in an instance, but the compiler still isn't going to let you access instance objects from a static method, even if it knows what they would be. The existence of the reflection API may also require some pointless work if you don't make it static. |
||
|
|
|
|
As already Jon said, a static variable, also referred to as a class variable, is a variable which exists across instances of a class. I found an example of this here:
Output of the program is given below: As we can see in this example each object has its own copy of class variable.
|
||
|
|
|
|
The static one is the same member on all of the class instances and the class itself. |
||
|
|