In java, what's the 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? And why?
|
In java, what's the difference between:
And
Both are What's better to use? And why? |
||||
|
|
|
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. |
|||||||||||||
|
|
For final, it can be assigned different values at runtime when initialized. For example
Thus each instance has different value of field a. For static final, all instances share the same value, and can't be altered after first initialized.
|
|||||
|
|
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. |
|||
|
|
|
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.
|
|||
|
|
|
Reading the answers I found no real test really getting to the point. Here are my 2 cents :
Results for first object :
Results for 2nd object :
Conclusion : As I thought java makes a difference between primitive and other types. Primitive types in Java are always "cached", same for strings literals (not new String objects), so no difference between static and non-static members. However there is a memory duplication for non-static members if they are not instance of a primitive type. Changing value of valueStatic to 10 will even go further as Java will give the same addresses to the two int variables. |
||||
|
|
|
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
|
|||
|
From the tests i have made, static final variables are not the same with final(non-static) variables! Final(non-static) variables can differ from object to object!!! But that's only if the initialization is made within the constructor! (If it is not initialized from the constructor then it is only a waste of memory as it creates final variables for every object that is created that cannot be altered.) For example:
What shows up on screen is: About Object: A@addbf1 Final: 14 Static Final: 5 About Object: A@530daa Final: 21 Static Final: 5 Anonymous 1st year IT student, Greece |
||||
|
|
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. |
|||
|
|
|
The static one is the same member on all of the class instances and the class itself. |
|||
|
|
|
If you mark this variable static then as you know, you would be requiring static methods to again access these values,this will be useful if you already think of using these variables only in static methods. If this is so then this would be the best one. You can however make the variable now as public since no one can modify it just like "System.out", it again depends upon your intentions and what you want to achieve. |
|||||
|
|
Lets say if the class will not have more than one instance ever, then which one takes more memory: private static final int ID = 250; or private final int ID = 250; I've understood that static will refer to the class type with only one copy in the memory and non static will be in a new memory location for each instance variable. However internally if we just compare 1 instance of the same class ever (i.e. more than 1 instance would not be created), then is there any overhead in terms of space used by 1 static final variable? |
|||||
|