Java Threads Question:

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

Tweet Share WhatsApp

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 PDF Read All 38 Java Threads Questions
Previous QuestionNext Question
Can I implement my own start() method?How do I create a Runnable with inheritance?