如果你了解进程间通信,那么理解线程间通信将会很容易。
Java 中的线程间通信
在线程间通信中,当开发应用程序时,两个或更多线程交换一些信息是非常重要的。线程间通信是通过使用 Object
类的 wait()
、notify()
和 notifyAll()
方法来实现的。
用于线程间通信的方法
有三个简单的方法和一个小技巧使线程间的通信成为可能。所有三个方法如下:
表格:方法及其描述
序号 |
方法与描述 |
1 |
public void wait() 让当前线程等待直到另一个线程调用了 notify() 。 |
2 |
public void notify() 唤醒正在等待此对象监视器的一个线程。 |
3 |
public void notifyAll() 唤醒所有调用同一对象上的 wait() 方法的线程。 |
这些方法已经在 Object
类中作为 final
方法实现,所以它们在所有的类中都是可用的。这三个方法只能在一个同步上下文中调用。
Java 中线程间通信的示例
这个例子展示了两个线程如何使用 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);
}
}
当上述程序编译并执行时,它产生的结果如下:
Output
Hi
Hi
How are you ?
I am good, what about you?
I am also doing fine!
Great!