Home  >  Article  >  Java  >  Java Example - Get all threads

Java Example - Get all threads

黄舟
黄舟Original
2017-01-20 11:24:551576browse

The following example demonstrates how to use the getName() method to obtain all running threads:

/*
 author by w3cschool.cc
 Main.java
 */public class Main extends Thread {
   public static void main(String[] args) {
      Main t1 = new Main();
      t1.setName("thread1");
      t1.start();
      ThreadGroup currentGroup = 
      Thread.currentThread().getThreadGroup();
      int noThreads = currentGroup.activeCount();
      Thread[] lstThreads = new Thread[noThreads];
      currentGroup.enumerate(lstThreads);
      for (int i = 0; i < noThreads; i++)
      System.out.println("线程号:" + i + " = " + lstThreads[i].getName());
   }}

The output of the above code is:

线程号:0 = main线程号:1 = thread1

The above is the Java example - Get For the content of all threads, please pay attention to the PHP Chinese website (www.php.cn) for more related content!




Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn