2个线程A-B-A-B或者B-A-B-A循环输出

Posted qfxydtk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2个线程A-B-A-B或者B-A-B-A循环输出相关的知识,希望对你有一定的参考价值。

代码:

/**
 * 两个线程循环打印输出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();
    }
}

  输出:技术分享图片技术分享图片

 

以上是关于2个线程A-B-A-B或者B-A-B-A循环输出的主要内容,如果未能解决你的问题,请参考以下文章

Java高频面试:3个线程循环n次,每次分别输出ABC

Java高频面试:3个线程循环n次,每次分别输出ABC

使多个线程循环输出0-99-0-99

如何在不同步的情况下使用多个线程(2、4、8、16 个线程)循环打印字符串(10,100、1000 个循环)?

记一个Java多线程相关的面试题

Java多线程:用三个线程控制循环输出10次ABC