Java Data Type Tutorial - Java Thread.enumerate(Thread [] tarray)








Syntax

Thread.enumerate(Thread [] tarray) has the following syntax.

public static int enumerate(Thread [] tarray)

Example

In the following code shows how to use Thread.enumerate(Thread [] tarray) method.

/*from  w  w  w.java2s .co m*/
public class Main {

  public static void main(String[] args) {
    Thread t = Thread.currentThread();
    t.setName("java2s.com thread");

    System.out.println("Thread = " + t);

    int count = Thread.activeCount();
    System.out.println("currently active threads = " + count);

    Thread th[] = new Thread[count];
    Thread.enumerate(th);

    for (int i = 0; i < count; i++) {
      System.out.println(i + ": " + th[i]);
    }
  }
}

The code above generates the following result.