Tuesday, 14 February 2012

Do I need to use synchronized on setValue(int)? | Java Threads

It depends whether the method affects method local variables, class static or instance variables. If only method local variables are changed, the value is said to be confined by the method and is not prone to threading issues.

No comments: