Q:

Java program to set and print thread name

belongs to collection: Java Threading Programs

0

Java program to set and print thread name

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to set and print the thread name is given below. The given program is compiled and executed successfully.

// Java program to set and print thread name

public class Main {
  public static void main(String[] args) {
    String threadName;
    Thread thrd1 = new Thread("Thread1");
    Thread thrd2 = new Thread("Thread2");

    thrd1.start();
    thrd2.start();

    threadName = thrd1.getName();
    System.out.println("Thread Name: " + threadName);

    threadName = thrd2.getName();
    System.out.println("Thread Name: " + threadName);
  }
}

Output:

Thread Name: Thread1
Thread Name: Thread2

Explanation:

In the above program, we created a public class Main. The Main class contains a main() method. The main() method is the entry point for the program. Here, we created two objects initialized with thread names. Then we get the thread name using the getName() method and printed the result.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java program to print the thread Id of a thread... >>
<< Java program to create a thread by implementing a ...