Answers

Question and Answer:

  Home  Java Threads

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

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.

 187 views

More Questions for you: