Is it correct to say that static means one copy of the value for all objects and volatile means one copy of the value for all threads?
Anyway a static variable value is also going to be one value for all threads, then why should we go for volatile?
|
Is it correct to say that static means one copy of the value for all objects and volatile means one copy of the value for all threads? Anyway a static variable value is also going to be one value for all threads, then why should we go for volatile? |
|||||
|
|
Declaring a static variable in Java, means that there will be only one copy, no matter how many objects of the class are created. The variable will be accessible even with no Objects created at all. However threads may have locally cached values of it. Declaring a variable as volatile, there will be one variable for each Object. So on the surface it seems there is no difference from a normal variable, and totally different from static. However, even with Object fields, a thread may cache a variable value locally. This means that if two threads update a variable of the same Object concurrently, and the variable is not declared volatile, there could be a case in which one of the thread has in cache an old value. Even if you access a static values through multiple thread each thread can have it's local cached copy! To avoid this you can declare the variable as static volatile and this will force the thread to read each time the global value. However, volatile is not a substitute for proper synchronisation! For instance:
Executing concurrentMethodWrong concurrently many times may lead to a final value of counter different from zero! To solve the problem, you've to implement a lock:
Or use the AtomicInteger class. |
|||||||||
|
|
Difference Between Static and Volatile : Static Variable: If two Threads(suppose t1 and t2) are accessing the same object and updating a variable which is declared as static then it means t1 and t2 can make their own local copy of the same object(including static variables) in their respective cache, so updation by t1 to the static variable in its local cache wont reflect in the static variable for t2 cache . Static variables are used in the Object Context where updation by one object would reflect in all the other objects of the same class but not in the Thread context where updation of one thread to the static variable will reflect the changes immediately to all the threads (in their local cache). Volatile variable: : If two Threads(suppose t1 and t2) are accessing the same object and updating a variable which is declared as volatile then it means t1 and t2 can make their own local cache of the Object except the variable which is declared as a volatile . So the volatile variable will have only one main copy which will be updated by different threads and updation by one thread to the volatile variable will immediately reflect to the other Thread. So the volatile variable is used in the Thread context . |
||||
|
|
|
If we declare a variable as static, there will be only one copy of the variable. So, whenever different threads access that variable, there will be only one final value for the variable(since there is only one memory location allocated for the variable). If a variable is declared as volatile, all threads will have their own copy of the variable but the value is taken from the main memory.So, the value of the variable in all the threads will be the same. So, in both cases, the main point is that the value of the variable is same across all threads. |
|||||
|
|
Declaring a variable volatile guarantees that on different architectures the jvm is not going to cache that variable thread locally |
|||
|
|