系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 系统教程 > 其它教程 > 详细页面

java实现多线程交替打印

时间:2020-11-23来源:www.pcxitongcheng.com作者:电脑系统城

本文实例为大家分享了java实现多线程交替打印的具体代码,供大家参考,具体内容如下

notify+wait实现

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import org.junit.Test;
import java.util.concurrent.*;
 
public class TestThreadLocal {
 Object o = new Object();
 CountDownLatch c=new CountDownLatch(2);
 @Test
 public void vvvvvvvv() throws InterruptedException {
  Thread t1 = new Thread() {
   @Override
   public void run() {
    for (int i = 0; i < 26; i++) {
     synchronized (o) {
      System.out.print((char) (65 + i));
      o.notify();
      try {
       if(i<25)o.wait();
      } catch (InterruptedException e) {
       e.printStackTrace();
      }
     }
    }
    c.countDown();
   }
  };
  Thread t2 = new Thread() {
   @Override
   public void run() {
    for (int i = 0; i < 26; i++) {
     synchronized (o) {
      System.out.print(1 + i);
      o.notify();
      try {
       if(i<25)o.wait();
      } catch (InterruptedException e) {
       e.printStackTrace();
      }
     }
    }
    c.countDown();
   }
  };
  t1.start();
  t2.start();
  //t1.join();
  //t2.join();
  c.await();
 }
}

A1B2C3D4E5F6G7H8I9J10K11L12M13N14O15P16Q17R18S19T20U21V22W23X24Y25Z26
t2可能先执行,notify(只随机唤醒一个 wait 线程)改成notifyAll(唤醒所有 wait 线程)更好。
这两个方法只唤醒,被唤醒的线程处于runnable状态。想交替执行,需要负责唤醒的线程自己阻塞。

LockSupport实现

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import org.junit.Test;
import java.util.concurrent.*;
import java.util.concurrent.locks.LockSupport;
 
public class TestThreadLocal {
 CountDownLatch c=new CountDownLatch(2);
 Thread t1 ,t2;
 @Test
 public void vvvvvvvv() throws InterruptedException {
  t1 = new Thread() {
   @Override
   public void run() {
    for (int i = 0; i < 26; i++) {
     System.out.print((char) (65 + i));
     LockSupport.unpark(t2);
     LockSupport.park();
    }
    c.countDown();
   }
  };
  t2 = new Thread() {
   @Override
   public void run() {
    for (int i = 0; i < 26; i++) {
     LockSupport.park();
     System.out.print(1+i);
     LockSupport.unpark(t1);
    }
    c.countDown();
   }
  };
  t1.start();
  t2.start();
  //t1.join();
  //t2.join();
  c.await();
 }
}

unpark调用时,如果当前线程还未进入park,则许可为true;
park调用时,判断许可是否为true,如果是true,则继续往下执行;如果是false,则等待,直到许可为true。
如果t2先执行,会park让t1先执行。如果t1先执行,打印后unpark t2,保证两个线程不会同时阻塞。
如果t2的LockSupport.park()和System.out.print(1+i)交换位置,可能出现t2连续打印两次的情况。
即t1打印后,执行unpartk(t2)前t2打印一次,然后t1 unpark t2后t2抢在t1前再打印一次。

分享到:

相关信息

  • ThinkPad蓝牙鼠标如何配对

    ThinkPad蓝牙鼠标如何配对解答步骤41U5008鼠标驱动官网地址: https://support.lenovo.com/en_US/downloads/detail.page?&LegacyDocID=MIGR-67201 第一种方式是比较传统的:使...

    2024-04-11

  • USB接口无法识别设备的解决方法

    故障现象: USB设备U盘、移动硬盘等插入后提示无法识别的设备,确认设备本身正常,设备可加电,或插入设备后加电但无任何反应,无法使用。新型号机器多表现为黄色USB接口存在此问题,...

    2024-04-11

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载