82
Java Thread setName() method
The setName() method of thread class is used to change the name of the thread.
Syntax
Parameter
Return
Exception
SecurityException: This exception throws if the current thread cannot modify the thread.
Example
Output:
After changing name of t1: Tutor Aspire Team running... running... After changing name of t2: TutorAspire
Next TopicMultithreading in Java