3.加锁 this 共享一个类实例
接下来,我们创建 5 个线程,调用 synchronized 加锁 this 的示例。首先我们这 5 个线程调用同一个对象的加锁方法,示例代码如下:
import java.util.Date; import java.util.concurrent.TimeUnit; publicclass SynchronizedExample { public static void main(String[] args) { // 创建当前类实例 final SynchronizedExample example = new SynchronizedExample(); // 创建 5 个线程执行任务 for (int i = 0; i < 5; i++) { new Thread(new Runnable() { @Override public void run() { try { // 调用 synchronized 修饰的 this 方法 example.thisMethod(); } catch (InterruptedException e) { e.printStackTrace(); } } }).start(); } } /** * synchronized 修饰的 this 方法 * @throws InterruptedException */ public void thisMethod() throws InterruptedException { synchronized (this) { System.out.println(String.format("当前执行线程:%s,执行时间:%s", Thread.currentThread().getName(), new Date())); TimeUnit.SECONDS.sleep(1); } } }
以上程序的执行结果如下:
从上述结果可以看出,以上线程使用的都是同一把锁。