การสื่อสารระหว่างเธรด
หากคุณตระหนักถึงการสื่อสารระหว่างกระบวนการคุณจะเข้าใจการสื่อสารระหว่างกันได้อย่างง่ายดาย การสื่อสารระหว่างเธรดมีความสำคัญเมื่อคุณพัฒนาแอปพลิเคชันที่เธรดตั้งแต่สองเธรดขึ้นไปแลกเปลี่ยนข้อมูลบางอย่าง
มีสามวิธีง่ายๆและเคล็ดลับเล็ก ๆ น้อย ๆ ที่ทำให้การสื่อสารเธรดเป็นไปได้ ทั้งสามวิธีมีดังต่อไปนี้ -
ซีเนียร์ | วิธีการและคำอธิบาย |
---|---|
1 | public void wait() ทำให้เธรดปัจจุบันรอจนกว่าเธรดอื่นจะเรียกใช้การแจ้งเตือน () |
2 | public void notify() ปลุกเธรดเดียวที่รออยู่บนจอภาพของวัตถุนี้ |
3 | public void notifyAll() ปลุกเธรดทั้งหมดที่เรียกว่า wait () บนอ็อบเจ็กต์เดียวกัน |
วิธีการเหล่านี้ได้รับการดำเนินการเป็น finalวิธีการใน Object ดังนั้นจึงมีอยู่ในทุกคลาส ทั้งสามวิธีสามารถเรียกใช้ได้จากภายในไฟล์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]