マルチスレッド アプリケーションの構築に特に適したプログラミング言語である Java は、マルチコア プロセッサの利点を最大限に活用して、プログラムの同時実行性と効率を向上させることができます。ただし、マルチスレッド開発では、スレッド間の通信の問題が重要な課題になります。この記事では、スレッド間通信の問題に対処するための一般的な方法をいくつか紹介します。
共有変数は、スレッド間通信の最も単純かつ最も一般的な方法の 1 つです。複数のスレッドは、共有変数にアクセスして変更することで情報を渡すことができます。ただし、スレッドは並列で実行されるため、競合状態が発生する可能性があります。競合状態を回避するには、ミューテックスを使用して共有変数へのアクセスを保護する必要があります。ミューテックス ロックは、synchronized キーワードまたは Lock インターフェイスを使用して Java で実装できます。
以下は、スレッド通信に共有変数を使用するサンプル コードです:
public class SharedVariableExample { private int sharedVar = 0; public synchronized void increment() { sharedVar++; } public synchronized int getSharedVar() { return sharedVar; } } public class MyThread extends Thread { private SharedVariableExample example; public MyThread(SharedVariableExample example) { this.example = example; } public void run() { for (int i = 0; i < 10; i++) { example.increment(); } } } public class Main { public static void main(String[] args) { SharedVariableExample example = new SharedVariableExample(); MyThread thread1 = new MyThread(example); MyThread thread2 = new MyThread(example); thread1.start(); thread2.start(); try { thread1.join(); thread2.join(); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("SharedVar: " + example.getSharedVar()); } }
上の例では、2 つのスレッドは、join() を通じて、それぞれ共有変数に対して 10 回のインクリメント操作を実行します。メソッドは、すべてのスレッドの実行が完了するのを待ち、共有変数の値を出力します。
スレッド間通信に共有変数を使用する場合、スレッドが別のスレッドの結果を待つ必要がある場合は、待機を使用できます。 /notification メカニズム (待機/通知メカニズム)。スレッドが待機する必要がある場合、オブジェクトの wait() メソッドを呼び出してスレッドを待機状態にできます。特定の条件が満たされると、他のスレッドはオブジェクトの notify() メソッドを呼び出して、待機中のスレッドを起動します。
以下は、スレッド通信に待機/通知メカニズムを使用するサンプル コードです。
public class WaitNotifyExample { private boolean flag = false; public synchronized void waitForSignal() { while (!flag) { try { wait(); } catch (InterruptedException e) { e.printStackTrace(); } } flag = false; System.out.println("Received signal"); } public synchronized void sendSignal() { flag = true; notify(); } } public class WaitThread extends Thread { private WaitNotifyExample example; public WaitThread(WaitNotifyExample example) { this.example = example; } public void run() { example.waitForSignal(); } } public class NotifyThread extends Thread { private WaitNotifyExample example; public NotifyThread(WaitNotifyExample example) { this.example = example; } public void run() { example.sendSignal(); } } public class Main { public static void main(String[] args) { WaitNotifyExample example = new WaitNotifyExample(); WaitThread waitThread = new WaitThread(example); NotifyThread notifyThread = new NotifyThread(example); waitThread.start(); try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } notifyThread.start(); try { waitThread.join(); notifyThread.join(); } catch (InterruptedException e) { e.printStackTrace(); } } }
上の例では、WaitThread スレッドはシグナルの受信を待機し、NotifyThread スレッドはシグナルの受信を待機します。 sleep() を通じてシグナルを送信します。メソッドは一定時間待機してから、待機中のスレッドを起動します。
ブロッキング キューは、スレッド間の通信を実現する効率的な方法です。 put() メソッドと take() メソッドが提供されており、キューがいっぱいまたは空の場合に、条件が満たされるまで自動的にブロックして待機できます。
以下は、スレッド通信にブロッキング キューを使用するサンプル コードです:
import java.util.concurrent.ArrayBlockingQueue;
以上がJava 開発におけるスレッド間通信の問題に対処する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。