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

Submitted by: Administrator
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.
Submitted by: Administrator

Read Online Java Threads Job Interview Questions And Answers