In our earlier post, we learnt that when a method is synchronized, only one thread will be allowed to enter the method. In this post, let's discuss the behavior of static synchronized methods. Video: To see the visual walk-through of this post, click below: https://youtu.be/YFNklSkT1js Multiple static synchronized methods in a same object example To facilitate... Continue Reading →
Java synchronized block
In the earlier post we learnt about the Java synchronized method. In this post, let's learn about the synchronized block. Video: To see the visual walk-through of this post, click below: https://youtu.be/NIeEiK_eklE What is Synchronized Block? Synchronized block is used to prevent multiple threads from executing a portion of a code in a method at the... Continue Reading →