what does synchronization mean?
java, synchronization
Solution
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
Problem
would you please explain more about the meaning of synchronization?