The Thread class provides methods to change and get the name of a thread. By default, each thread has a name i.e. thread-0, thread -1 and so on. By we can change the name of the thread by using setName() method. The syntax of setName() and getName() methods are given below:
Example of naming a thread
Test it Now