2.4线程组创建

2018-06-18 03:26:17来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

public class 线程组创建 {
public static void main(String[] args) {
ThreadGroup threadGroup=new ThreadGroup("my");
threadGroup.setMaxPriority(5);
System.out.println(threadGroup.getMaxPriority());
//getMaxPriority() 可以通过这个函数 知道这个线程组的最大长度
Thread t1=new Thread(threadGroup, new Runnable() {
public void run() {
System.out.println("线程组 子线程1");
}
},"T1");
Thread t2=new Thread(threadGroup, new Runnable() {
public void run() {
System.out.println("线程组 子线程2");
}
},"T2");
t1.start();
t2.start();
System.out.println(threadGroup.activeCount());
System.out.println(threadGroup.activeGroupCount());
System.out.println("-----------");
threadGroup.list();
}
}

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:模仿spring-aop的功能,利用注解搭建自己的框架。

下一篇:Quartz基本使用