91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java中怎么交替打印兩個線程

發布時間:2021-08-07 11:55:32 來源:億速云 閱讀:119 作者:Leah 欄目:編程語言

java中怎么交替打印兩個線程,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

使用ReentrantLock實現兩個線程交替打印

實現字母在前數字在后

package com.study.pattern; import java.util.concurrent.CountDownLatch;import java.util.concurrent.locks.Condition;import java.util.concurrent.locks.Lock;import java.util.concurrent.locks.ReentrantLock; public class Demo2 { private static Lock lock = new ReentrantLock(); private static Condition c1 = lock.newCondition(); private static Condition c2 = lock.newCondition(); private static CountDownLatch count = new CountDownLatch(1); public static void main(String[] args) {  String c = "ABCDEFGHI";  char[] ca = c.toCharArray();  String n = "123456789";  char[] na = n.toCharArray();  Thread t1 = new Thread(() -> {   try {    lock.lock();    count.countDown();    for(char caa : ca) {     c1.signal();     System.out.print(caa);     c2.await();    }    c1.signal();   } catch (InterruptedException e) {    e.printStackTrace();   } finally {    lock.unlock();   }  });  Thread t2 = new Thread(() -> {   try {    count.await();    lock.lock();    for(char naa : na) {     c2.signal();     System.out.print(naa);     c1.await();    }    c2.signal();   } catch (InterruptedException e) {    e.printStackTrace();   } finally {    lock.unlock();   }  });  t1.start();  t2.start(); }}

最后輸出結果:

使用LinkedTransferQueue實現兩個線程交替打印

實現字母在前數字在后

package com.study.pattern;  import java.util.concurrent.LinkedTransferQueue; public class Demo3 { private static LinkedTransferQueue<Character> linkedC = new LinkedTransferQueue<Character>(); private static LinkedTransferQueue<Character> linkedN = new LinkedTransferQueue<Character>(); public static void main(String[] args) {  String c = "ABCDEFGHI";  char[] ca = c.toCharArray();  String n = "123456789";  char[] na = n.toCharArray();  Thread t1 = new Thread(() -> {   for(char caa : ca) {    try {     linkedC.put(caa);     char a = linkedN.take();     System.out.print(a);    } catch (InterruptedException e) {     e.printStackTrace();    }   }  });  Thread t2 = new Thread(() -> {   for(char naa : na) {    try {     char b = linkedC.take();     System.out.print(b);     linkedN.put(naa);    } catch (InterruptedException e) {     e.printStackTrace();    }   }  });  t1.start();  t2.start();  }}

輸出結果:

使用synchronized實現兩個線程交替打印

實現字母在前數字在后

package com.study.pattern;  import java.util.concurrent.CountDownLatch; public class Demo4 { private static CountDownLatch count = new CountDownLatch(1); public static void main(String[] args) {  String c = "ABCDEFGHI";  char[] ca = c.toCharArray();  String n = "123456789";  char[] na = n.toCharArray();  Object lock = new Object();  Thread t1 = new Thread(() -> {   synchronized (lock) {    count.countDown();    for(char caa : ca) {     System.out.print(caa);     lock.notify();     try {      lock.wait();     } catch (InterruptedException e) {      e.printStackTrace();     }    }    lock.notify();   }  });  Thread t2 = new Thread(() -> {   try {    count.await();   } catch (InterruptedException e) {    e.printStackTrace();   }   synchronized (lock) {    for(char naa : na) {     System.out.print(naa);     lock.notify();     try {      lock.wait();     } catch (InterruptedException e) {      e.printStackTrace();     }    }    lock.notify();   }  });  t1.start();  t2.start(); }}

輸出結果:

使用LockSupport實現兩個線程交替打印

實現字母在前數字在后

package com.study.pattern;  import java.util.concurrent.locks.LockSupport; public class Demo5 { private static Thread t1; private static Thread t2; public static void main(String[] args) {  String c = "ABCDEFGHI";  char[] ca = c.toCharArray();  String n = "123456789";  char[] na = n.toCharArray();  t1 = new Thread(() -> {   for(char caa : ca) {    System.out.print(caa);    LockSupport.unpark(t2);    LockSupport.park();    }  });  t2 = new Thread(() -> {   for(char naa : na) {    LockSupport.park();    System.out.print(naa);    LockSupport.unpark(t1);   }  });  t1.start();  t2.start(); }}

關于java中怎么交替打印兩個線程問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

林西县| 临海市| 苍梧县| 子洲县| 读书| 蓬溪县| 大港区| 英超| 自治县| 新兴县| 太谷县| 秦安县| 永州市| 朔州市| 新乡市| 玛沁县| 嘉善县| 曲阜市| 房产| 肇州县| 钦州市| 通江县| 新闻| 开原市| 商城县| 高密市| 自贡市| 广元市| 纳雍县| 忻城县| 兰西县| 万年县| 临猗县| 白水县| 鄢陵县| 扬中市| 司法| 共和县| 彝良县| 江西省| 治多县|