Is there any way to find the number of threads that the task manager runs in Java?

In Java, if I start 1000 threads using the loop shown below, is there any way to monitor the number of threads actually running and the CPU resources consumed by the thread using the task manager?

for(int j=0; j<=1000; j++)
{
    MyThread mt = new MyThread ();
    mt.start ();
}

Solution

You can use visual VM or jconsole or any other monitoring tool

The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
分享
二维码
< <上一篇
下一篇>>