- Java 并发教程
- 并发 - 首页
- 并发 - 概述
- 并发 - 环境设置
- 并发 - 主要操作
- 线程间通信
- 并发 - 同步
- 并发 - 死锁
- 工具类示例
- 并发 - ThreadLocal
- 并发 - ThreadLocalRandom
- 锁示例
- 并发 - 锁 (Lock)
- 并发 - 读写锁 (ReadWriteLock)
- 并发 - 条件 (Condition)
- 原子变量示例
- 并发 - AtomicInteger
- 并发 - AtomicLong
- 并发 - AtomicBoolean
- 并发 - AtomicReference
- 并发 - AtomicIntegerArray
- 并发 - AtomicLongArray
- 并发 - AtomicReferenceArray
- 执行器示例
- 并发 - 执行器 (Executor)
- 并发 - 执行器服务 (ExecutorService)
- ScheduledExecutorService
- 线程池示例
- 并发 - newFixedThreadPool
- 并发 - newCachedThreadPool
- newScheduledThreadPool
- newSingleThreadExecutor
- 并发 - ThreadPoolExecutor
- ScheduledThreadPoolExecutor
- 高级示例
- 并发 - Futures 和 Callables
- 并发 - Fork-Join 框架
- 并发集合
- 并发 - BlockingQueue
- 并发 - ConcurrentMap
- ConcurrentNavigableMap
- 并发 - 有用资源
- 并发 - 快速指南
- 并发 - 有用资源
- 并发 - 讨论
线程间通信
如果您了解进程间通信,那么理解线程间通信就很容易了。当您开发一个两个或多个线程交换信息的应用程序时,线程间通信非常重要。
有三种简单的方法和一个小技巧可以实现线程通信。所有三种方法都列在下面:
序号 | 方法及描述 |
---|---|
1 | public void wait() 导致当前线程等待,直到另一个线程调用 notify()。 |
2 | public void notify() 唤醒正在等待此对象监视器的单个线程。 |
3 | public void notifyAll() 唤醒所有在同一个对象上调用 wait() 的线程。 |
这些方法已在 Object 中实现为 **final** 方法,因此它们在所有类中都可用。所有三个方法只能在 **synchronized** 上下文中调用。
示例
此示例演示了两个线程如何使用 **wait()** 和 **notify()** 方法进行通信。您可以使用相同的概念创建复杂的系统。
class Chat { boolean flag = false; public synchronized void Question(String msg) { if (flag) { try { wait(); } catch (InterruptedException e) { e.printStackTrace(); } } System.out.println(msg); flag = true; notify(); } public synchronized void Answer(String msg) { if (!flag) { try { wait(); } catch (InterruptedException e) { e.printStackTrace(); } } System.out.println(msg); flag = false; notify(); } } class T1 implements Runnable { Chat m; String[] s1 = { "Hi", "How are you ?", "I am also doing fine!" }; public T1(Chat m1) { this.m = m1; new Thread(this, "Question").start(); } public void run() { for (int i = 0; i < s1.length; i++) { m.Question(s1[i]); } } } class T2 implements Runnable { Chat m; String[] s2 = { "Hi", "I am good, what about you?", "Great!" }; public T2(Chat m2) { this.m = m2; new Thread(this, "Answer").start(); } public void run() { for (int i = 0; i < s2.length; i++) { m.Answer(s2[i]); } } } public class TestThread { public static void main(String[] args) { Chat m = new Chat(); new T1(m); new T2(m); } }
编译并执行上述程序后,会产生以下结果:
输出
Hi Hi How are you ? I am good, what about you? I am also doing fine! Great!
以上示例取自并修改自 [https://stackoverflow.com/questions/2170520/inter-thread-communication-in-java]
广告