Back
Close

Computing with Data

elgeish
585.8K views

Reentrant Locks - Part IV

The locks created using the synchronized keyword in Java are reentrant; they are also known as intrinsic or monitor locks. Here's how reentrant synchronization works:

class ReentrantIntrinsicLockExample {
  private final Object intrinsicLock = new Object();
  
  public void foo() {
    synchronized (intrinsicLock) {
      // ...
      bar();
    }
  }
  
  public void bar() {
    synchronized (intrinsicLock) {
      // ...
    }
  }
}
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.
Go to tech.io