
- Java.lang - Home
- Java.lang - Boolean
- Java.lang - Byte
- Java.lang - Character
- Java.lang - Character.Subset
- Java.lang - Character.UnicodeBlock
- Java.lang - Class
- Java.lang - ClassLoader
- Java.lang - Compiler
- Java.lang - Double
- Java.lang - Enum
- Java.lang - Float
- Java.lang - InheritableThreadLocal
- Java.lang - Integer
- Java.lang - Long
- Java.lang - Math
- Java.lang - Number
- Java.lang - Object
- Java.lang - Package
- Java.lang - Process
- Java.lang - ProcessBuilder
- Java.lang - Runtime
- Java.lang - RuntimePermission
- Java.lang - SecurityManager
- Java.lang - Short
- Java.lang - StackTraceElement
- Java.lang - StrictMath
- Java.lang - String
- Java.lang - StringBuffer
- Java.lang - StringBuilder
- Java.lang - System
- Java.lang - Thread
- Java.lang - ThreadGroup
- Java.lang - ThreadLocal
- Java.lang - Throwable
- Java.lang - Void
- Java.lang Package Useful Resources
- Java.lang - Useful Resources
- Java.lang - Discussion
Java Thread holdsLock() Method
Description
The Java Thread holdsLock() method returns true if and only if the current thread holds the monitor lock on the specified object.
Declaration
Following is the declaration for java.lang.Thread.holdsLock() method
public static boolean holdsLock(Object obj)
Parameters
obj − This is the object on which to test lock ownership.
Return Value
This method returns true if the current thread holds the monitor lock on the specified object.
Exception
NullPointerException − if obj is null.
Example: Checking if a thread holds lock as true
The following example shows the usage of Java Thread holdsLock() method. In this program, we've created a class ThreadDemo. In main method, we've created a new thread and started it using start() method. In run() method, we're print hold lock status using holdsLock() method. Being in synchronized block, holdsLock() method returns true.
package com.tutorialspoint; public class ThreadDemo implements Runnable { Thread th; public ThreadDemo() { th = new Thread(this); // this will call run() function th.start(); } public void run() { /* returns true if and only if the current thread holds the monitor lock on the specified object */ synchronized (this) { System.out.println("Holds Lock = " + Thread.holdsLock(this)); } } public static void main(String[] args) { new ThreadDemo(); } }
Output
Let us compile and run the above program, this will produce the following result −
Holds Lock = true
Example: Checking if a thread holds lock as false
The following example shows the usage of Java Thread holdsLock() method. In this program, we've created a class ThreadDemo. In main method, we've created a new thread and started it using start() method. In run() method, we're print hold lock status using holdsLock() method. Being not in synchronized block, holdsLock() method returns false.
package com.tutorialspoint; public class ThreadDemo implements Runnable { Thread th; public ThreadDemo() { th = new Thread(this); // this will call run() function th.start(); } public void run() { /* returns true if and only if the current thread holds the monitor lock on the specified object */ System.out.println("Holds Lock = " + Thread.holdsLock(this)); } public static void main(String[] args) { new ThreadDemo(); } }
Output
Let us compile and run the above program, this will produce the following result −
Holds Lock = false