• 2个线程ABAB或者BABA循环输出


    代码:

    /**
     * 两个线程循环打印输出a-b-a-b
     */
    public class AandBforTOthread {
        private static Object o = new Object();
        private static int flag=0;
        private static boolean close=false;
        static class A implements Runnable {
            @Override
            public void run() {
                synchronized (o) {
                    if (flag==0){
                        flag=1;
                    }
                    while (!close) {
                        System.out.println("A");
                        if (flag==1){
                            try {
                                o.wait();//释放锁
                            } catch (InterruptedException e) {
                                e.printStackTrace();
                            }
                            o.notify();
                        }else {
                            o.notify();
                            try {
                                o.wait();
                            } catch (InterruptedException e) {
                                e.printStackTrace();
                            }
                        }
    
                    }
                    o.notify();
                }
            }
        }
    
        static class B implements Runnable {
            @Override
            public void run() {
                if (flag==0){
                    flag=2;
                }
                synchronized (o) {
                    while (!close) {
                        System.out.println("B");
                        if (flag==1){
                            o.notify();
                            try {
                                o.wait();
                            } catch (InterruptedException e) {
                                e.printStackTrace();
                            }
                        }else{
                            try {
                                o.wait();//释放锁
                            } catch (InterruptedException e) {
                                e.printStackTrace();
                            }
                            o.notify();
                        }
                    }
                    o.notify();
                }
            }
        }
    
        public static void main(String[] args) {
            Thread a = new Thread(new A());
            Thread b = new Thread(new B());
            b.start();
            a.start();
            try {
                Thread.sleep(10l);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            close=true;
            a.interrupt();
            b.interrupt();
        }
    }
    

      输出:

  • 相关阅读:
    免密码输入ssh连接
    关于调用函数使用栈
    uos中tftp、nfs服务重启方法、路径
    uos安装dogtail首次打开提示可访问性,点击确定按钮如何自动化
    linux查看启动项
    5.gitlab提交时触发jenkins
    Fun blog
    Github Page 加速 | vercel ~~
    98--RocketMQ原生API收发消息
    97--RocketMQ工作原理
  • 原文地址:https://www.cnblogs.com/qfxydtk/p/8728877.html
Copyright © 2020-2023  润新知