Java program to count active threads of a thread group

Java example to count active threads of a thread group.
Submitted by Nidhi, on April 10, 2022

Problem Solution:

In this program, we will create a thread group using ThreadGroup class and add child threads to the group and count active threads using activeCount() method.

Program/Source Code:

The source code to count active threads of a thread group is given below. The given program is compiled and executed successfully.

// Java program to count active threads 
// of a thread group

class MyThread extends Thread {
  MyThread(String threadname, ThreadGroup tg) {
    super(tg, threadname);
    start();
  }
  public void run() {
    System.out.println(Thread.currentThread().getName() + " is running");
  }
}

public class Main {
  public static void main(String[] args) {
    try {
      ThreadGroup group = new ThreadGroup("Parent thread");

      MyThread t1 = new MyThread("Child Thread1", group);
      MyThread t2 = new MyThread("Child Thread2", group);
      MyThread t3 = new MyThread("Child Thread3", group);

      System.out.println("Total active threads: " + group.activeCount());
    } catch (Exception e) {
      System.out.println(e);
    }
  }
}

Output:

Total active threads: 3
Child Thread2 is running
Child Thread1 is running
Child Thread3 is running

Explanation:

In the above program, we created two classes MyThread and Main. We created MyThread class by extending the Thread class.

The Main class contains a main() method. The main() method is the entry point for the program. Here, we created an object of ThreadGroup class and added the child thread into the thread group. After that, we count the activated threads and printed the result.

Java Threading Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.