码迷,mamicode.com
首页 > 编程语言 > 详细

LockSupport实现线程同步

时间:2019-12-14 13:41:34      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:string   system   color   span   同步   stat   pre   oid   null   

public class LockSupport01 {

    static Thread t1 = null, t2 = null;
    public static void main(String[] args) {
        char[] aI = "1234567".toCharArray();
        char[] aC = "ABCDEFG".toCharArray();
        t1 = new Thread(()->{
            for (char c : aI) {
                System.out.print(c);
                LockSupport.unpark(t2);
                LockSupport.park();
                
            }
        });
        
        t2 = new Thread(()-> {
            for (char c : aC) {
                LockSupport.park();
                System.out.print(c);
                LockSupport.unpark(t1);
                
            }
        });
        t1.start();
        t2.start();
    }
}

 

LockSupport实现线程同步

标签:string   system   color   span   同步   stat   pre   oid   null   

原文地址:https://www.cnblogs.com/wgDream/p/12038866.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!