欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Thread.activeCount() 主流IDE返回值

程序员文章站 2022-04-29 20:17:05
...

 Thread.activeCount()返回值

 

public class ThreadActiveCountTest {
	 public static void main(String[] args) {
		 System.out.println(Thread.activeCount());
	 }
}

 

 

    Thread.activeCount()此方法返回活动线程的当前线程的线程组中的数量。
    IDE返回的值不相同,Eclipse中返回1,Intellij idea中返回2。