Home » Java Thread suspend() Method with Examples

Java Thread suspend() Method with Examples

by Online Tutorials Library

Java Thread suspend() method

The suspend() method of thread class puts the thread from running to waiting state. This method is used if you want to stop the thread execution and start it again when a certain event occurs. This method allows a thread to temporarily cease execution. The suspended thread can be resumed using the resume() method.

Syntax

Return

This method does not return any value.

Exception

SecurityException: If the current thread cannot modify the thread.

Example

Test it Now

Output:

Thread-0  1  Thread-2  1  Thread-0  2  Thread-2  2  Thread-0  3  Thread-2  3  Thread-0  4  Thread-2  4  

Next TopicJava Thread

You may also like