Java Thread.join在哪里可以使用同步辅助类

avatar
作者
猴君
阅读量:0

Thread.join() 方法用于等待线程执行完成。在使用 Thread.join() 时,为了确保线程安全,可以使用同步辅助类,如 synchronized 关键字、Lock 接口或 ReentrantLock 类等。

以下是一些使用同步辅助类的示例:

  1. 使用 synchronized 关键字:
class MyRunnable implements Runnable {     @Override     public void run() {         synchronized (lock) {             // 临界区代码         }     } }  public class Main {     private static final Object lock = new Object();      public static void main(String[] args) throws InterruptedException {         Thread thread1 = new Thread(new MyRunnable());         Thread thread2 = new Thread(new MyRunnable());          thread1.start();         thread2.start();          thread1.join(); // 等待 thread1 执行完成         thread2.join(); // 等待 thread2 执行完成     } } 
  1. 使用 Lock 接口:
import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock;  class MyRunnable implements Runnable {     private final Lock lock = new ReentrantLock();      @Override     public void run() {         lock.lock(); // 获取锁         try {             // 临界区代码         } finally {             lock.unlock(); // 释放锁         }     } }  public class Main {     public static void main(String[] args) throws InterruptedException {         Thread thread1 = new Thread(new MyRunnable());         Thread thread2 = new Thread(new MyRunnable());          thread1.start();         thread2.start();          thread1.join(); // 等待 thread1 执行完成         thread2.join(); // 等待 thread2 执行完成     } } 
  1. 使用 ReentrantLock 类:
import java.util.concurrent.locks.ReentrantLock;  class MyRunnable implements Runnable {     private final ReentrantLock lock = new ReentrantLock();      @Override     public void run() {         lock.lock(); // 获取锁         try {             // 临界区代码         } finally {             lock.unlock(); // 释放锁         }     } }  public class Main {     public static void main(String[] args) throws InterruptedException {         Thread thread1 = new Thread(new MyRunnable());         Thread thread2 = new Thread(new MyRunnable());          thread1.start();         thread2.start();          thread1.join(); // 等待 thread1 执行完成         thread2.join(); // 等待 thread2 执行完成     } } 

在这些示例中,我们使用了不同的同步辅助类来确保在多线程环境下对共享资源的访问是线程安全的。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!