Home » Java Thread getName() Method with Examples

Java Thread getName() Method with Examples

by Online Tutorials Library

Java Thread getName() method

The getName() method of thread class is used to return the name of thread.

Syntax

Return

Example

Test it Now

Output:

Name of t1: Thread-0  Name of t2: Thread-1  Thread is running...  Thread is running...  

You may also like