The suspend() method of thread class puts the thread from running to waiting state. This method is employed if you would like to prevent the thread execution and begin it again when a particular event occurs. This method allows a thread to temporarily cease execution. The suspended thread is often resumed using the resume() method. If the present thread cannot modify the target thread then it’ll throw Security Exception.
Note: suspend() method is deprecated in the latest Java version.
Syntax
public final void suspend()
Return: Does not return any value.
Exception: Throws SecurityException If the current thread cannot modify the thread.
Example:
Java
import java.io.*;
class GFG extends Thread {
public void run()
{
for ( int i = 1 ; i < 5 ; i++) {
try {
sleep( 5 );
System.out.println(
"Currently running - "
+ Thread.currentThread().getName());
}
catch (InterruptedException e) {
System.out.println(e);
}
System.out.println(i);
}
}
public static void main(String args[])
{
GFG t1 = new GFG();
GFG t2 = new GFG();
GFG t3 = new GFG();
t1.start();
t2.start();
t2.suspend();
t3.start();
}
}
|
Output

Note: Thread t2 can be resumed by resume() method.
t2.resume()
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
24 Nov, 2020
Like Article
Save Article