would you please explain more about the meaning of synchronization?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Synchronization is the way two or more threads can safely access shared resources without overwriting each other's work. http://java.sun.com/docs/books/tutorial/essential/concurrency/sync.html |
|||||||||
|
|
You need to use Synchronization if work in multi threaded environment. Local variables inside methods are thread safe. If you are using global variables (including class level variables) you need to synchronize the method. |
|||
|
|