- package com.heima.test6;
- public class Test193 {
- /**
- * @param args
- * ThreadGroup
- */
- public static void main(String[] args) {
- ThreadGroup tg = new ThreadGroup("我是一个新的线程组"); //创建新的线程组
- MyRunnable mr = new MyRunnable(); //创建Runnable的子类对象
-
- Thread t1 = new Thread(tg, mr, "张三"); //将线程t1放在组中
- Thread t2 = new Thread(tg, mr, "李四"); //将线程t2放在组中
-
- tg.setDaemon(true); //设置tg线程组为守护线程
- // t1.setDaemon(true);
- // t2.setDaemon(true);
- t1.start(); //开始线程t1
- t2.start(); //开始线程t2
- for (int i = 0; i < 10; i++) { //显示mian线程执行效果
- System.out.println(Thread.currentThread().getName() + "\t" + i);
- }
- }
- }
- class MyRunnable implements Runnable {
- @Override
- public void run() {
- for(int i = 0; i < 1000; i++) {
- System.out.println(Thread.currentThread().getName() + "...." + i);
- }
- }
-
- }
复制代码
视频老师将可以把对线程组进行操作,设置成守护线程(后台线程),为什么我测试一下,并没有什么效果 |
|