Programming Tutorials

Comment on Tutorial - Transient vs Volatile modifiers in Java By Reema sen



Comment Added by : Rajesh Poppoppu

Comment Added at : 2011-12-30 13:04:42

Comment on Tutorial : Transient vs Volatile modifiers in Java By Reema sen
There was no sharing of volatile variable in the program. It just used the volatile instance variable. Each Thread created in the program having its own copy of that variable. there was no sharing

View Tutorial