What is the difference between a synchronized method and a synchronized block? Technology Community › Category: Java › What is the difference between a synchronized method and a synchronized block? 0 Vote Up Vote Down VietMX Staff asked 4 years ago In Java programming, each object has a lock. A thread can acquire the lock for an object by using the synchronized keyword. The synchronized keyword can be applied in a method level (coarse grained lock) or block level of code (fine grained lock).