Comunicazione Interthread
Se sei a conoscenza della comunicazione interprocesso, sarà facile per te capire la comunicazione interthread. La comunicazione tra thread è importante quando si sviluppa un'applicazione in cui due o più thread si scambiano alcune informazioni.
Ci sono tre semplici metodi e un piccolo trucco che rende possibile la comunicazione con i thread. Tutti e tre i metodi sono elencati di seguito:
Sr.No. | Metodo e descrizione |
---|---|
1 | public void wait() Fa in modo che il thread corrente attenda fino a quando un altro thread invoca notifica (). |
2 | public void notify() Riattiva un singolo thread in attesa sul monitor di questo oggetto. |
3 | public void notifyAll() Riattiva tutti i thread che hanno chiamato wait () sullo stesso oggetto. |
Questi metodi sono stati implementati come finalmetodi in Object, quindi sono disponibili in tutte le classi. Tutti e tre i metodi possono essere chiamati solo dall'interno di un filesynchronized contesto.
Esempio
Questo esempio mostra come due thread possono comunicare utilizzando wait() e notify()metodo. È possibile creare un sistema complesso utilizzando lo stesso concetto.
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);
}
}
Quando il programma di cui sopra viene rispettato ed eseguito, produce il seguente risultato:
Produzione
Hi
Hi
How are you ?
I am good, what about you?
I am also doing fine!
Great!
L'esempio sopra è stato preso e poi modificato da [https://stackoverflow.com/questions/2170520/inter-thread-communication-in-java]