Java Threads Question:
Download Job Interview Questions and Answers PDF
Do I need to use synchronized on setValue(int)?
Answer:
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.
Download Java Threads Interview Questions And Answers
PDF
Previous Question | Next Question |
Can I implement my own start() method? | How do I create a Runnable with inheritance? |