两个线程一个输出字母,一个输出数字,交替输出A1B2C3D4E5F6G7。

Posted 蛋挞小子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两个线程一个输出字母,一个输出数字,交替输出A1B2C3D4E5F6G7。相关的知识,希望对你有一定的参考价值。

第一种方式:

import java.util.concurrent.CountDownLatch;

public class ConcurrentTest {
    private static CountDownLatch latch= new CountDownLatch(1);

    public static void main(String[] args) {
        final Object o = new Object();
        char[] number = "1234567".toCharArray();
        char[] letter = "ABCDEFG".toCharArray();
        new Thread(() -> {
            try {
                latch.await();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            synchronized (o) {
                for (char c : number) {
                    System.out.print(c);
                    try {
                        o.notify();
                        o.wait();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
                o.notify();
            }
        }, "t1").start();

        new Thread(() -> {
            synchronized (o) {
                for (char c : letter) {
                    System.out.print(c);
                    latch.countDown();
                    try {
                        o.notify();
                        o.wait();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
                o.notify();
            }
        }, "t2").start();
    }
}

第二种方式:
import java.util.concurrent.CountDownLatch;

public class ConcurrentTest {
    private static volatile boolean task = false;

    public static void main(String[] args) {
        final Object o = new Object();
        char[] number = "1234567".toCharArray();
        char[] letter = "ABCDEFG".toCharArray();
        new Thread(() -> {
            synchronized (o) {
                while (!task) {
                    try {
                        o.wait();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
                for (char c : number) {
                    System.out.print(c);
                    try {
                        o.notify();
                        o.wait();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
                o.notify();
            }
        }, "t1").start();

        new Thread(() -> {
            synchronized (o) {
                for (char c : letter) {
                    System.out.print(c);
                    task = true;
                    try {
                        o.notify();
                        o.wait();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
                o.notify();
            }
        }, "t2").start();
    }
}

第三种方式:
import java.util.concurrent.locks.LockSupport;

public class ConcurrentTest {
    static Thread t1 = null, t2 = null;

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

            }
        }, "t1");

        t2 = new Thread(() -> {
            for (char c : letter) {
                System.out.print(c);
                LockSupport.unpark(t1);
                LockSupport.park();
            }
        }, "t2");
        t1.start();
        t2.start();
    }
}

第四种方式:

import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

public class ConcurrentTest {
    public static void main(String[] args) {
        char[] number = "1234567".toCharArray();
        char[] letter = "ABCDEFG".toCharArray();
        Lock lock = new ReentrantLock();
        Condition condition1 = lock.newCondition();
        Condition condition2 = lock.newCondition();
        new Thread(() -> {
            try {
                lock.lock();
                for (char c : number) {
                    System.out.print(c);
                    condition2.signal();
                    condition1.await();
                }
                condition2.signal();
            } catch (InterruptedException e) {
                e.printStackTrace();
            } finally {
                lock.unlock();
            }
        }, "t1").start();

        new Thread(() -> {
            try {
                lock.lock();
                for (char c : letter) {
                    System.out.print(c);
                    condition1.signal();
                    condition2.await();
                }
                condition1.signal();
            } catch (InterruptedException e) {
                e.printStackTrace();
            } finally {
                lock.unlock();
            }
        }, "t2").start();

    }
}

 

以上是关于两个线程一个输出字母,一个输出数字,交替输出A1B2C3D4E5F6G7。的主要内容,如果未能解决你的问题,请参考以下文章

两个线程一个输出字母,一个输出数字,交替输出A1B2C3D4E5F6G7。

go练习:交叉输出数字和字母

synchronized如何实现两个线程交替运行?看完你就懂了,列害dei

Java 测试:创建两个线程,模拟对话,交替输出

使用ReentrantLock的newCondition交替输出数组

写两个线程,交替打印数字和字母,一个线程打印 1~26,另一个线程打印字母 A-Z