Java Threads Question:
Download Questions PDF

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

Java Threads Interview Question
Java Threads Interview Question

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 QuestionNext Question
Can I implement my own start() method?How do I create a Runnable with inheritance?