Javatpoint Logo
Javatpoint Logo

Java ThreadPoolExecutor getActiveCount() Method

The getActiveCount() method of ThreadPoolExecutor class returns the approximate number of threads that are actively executing the tasks.

Syntax

Parameters

NA

Returns

The number of threads

Throw

Does not throw the exception.

Example 1

Test it Now

Output:

Currently executing threads: 0
Running Thread Name: pool-1-thread-2
Running Thread Name: pool-1-thread-1
Completed Thread Name: pool-1-thread-1
Completed Thread Name: pool-1-thread-2

Example 2

Test it Now

Output:

Starting threads
 Before execute Currently executing threads: 0
 After execute Currently executing threads: 1
Thread sleeping for 1000 i=0
Threads started, main ends

Thread sleeping for 1000 i=1
Thread sleeping for 1000 i=2
Thread sleeping for 1000 i=3
Thread sleeping for 1000 i=4
 now  i > 5 :






Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA