A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Java program to set and print thread name
Q:

Java program to set and print thread name

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)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now