Thread.activeCount() 主流IDE返回值_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > Thread.activeCount() 主流IDE返回值

Thread.activeCount() 主流IDE返回值

 2018/1/8 12:16:47  firkeuuuu  程序员俱乐部  我要评论(0)
  • 摘要:Thread.activeCount()返回值publicclassThreadActiveCountTest{publicstaticvoidmain(String[]args){System.out.println(Thread.activeCount());}}Thread.activeCount()此方法返回活动线程的当前线程的线程组中的数量。IDE返回的值不相同,Eclipse中返回1,Intellijidea中返回2。
  • 标签:thread ide

?Thread.activeCount()返回值

?

class="java" name="code">public class ThreadActiveCountTest {
	 public static void main(String[] args) {
		 System.out.println(Thread.activeCount());
	 }
}

?

?

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

发表评论
用户名: 匿名