线程通信(交替执行)

Posted kaibing

tags:

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

package com.kaibing.thread;

/**
 * 线程的通信
 * <p>
 * wati()
 * notify():随机唤醒一个
 * notifyAll():全部唤醒
 */
class PrintNum implements Runnable {

    int num = 1;

    @Override
    public void run() {
        while (true) {
            synchronized (this) {
                notify();

                if (num <= 100) {
                    try {
                        Thread.currentThread().sleep(10);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    System.out.println(Thread.currentThread().getName() + ":" + num);
                    num++;
                } else {
                    break;
                }

                try {
                    wait();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }

        }
    }
}

public class Communication {

    public static void main(String[] args) {
        PrintNum p = new PrintNum();
        Thread t1 = new Thread(p);
        Thread t2 = new Thread(p);

        t1.setName("A");
        t2.setName("B");

        t1.start();
        t2.start();

    }
}

 

以上是关于线程通信(交替执行)的主要内容,如果未能解决你的问题,请参考以下文章

java12_线程的通信

线程通信

深入理解线程通信

线程的通信

《多线程》第6节:线程通信

Java多线程之线程通信