1.加锁 class 共享一个类实例
首先,我们创建 5 个线程,调用同一个对象下 synchronized 加锁的 class 代码,具体示例如下:
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 修饰的 class 方法 example.classMethod(); } catch (InterruptedException e) { e.printStackTrace(); } } }).start(); } } /** * synchronized 修饰的 class 方法 * @throws InterruptedException */ public void classMethod() throws InterruptedException { synchronized (SynchronizedExample.class) { System.out.println(String.format("当前执行线程:%s,执行时间:%s", Thread.currentThread().getName(), new Date())); TimeUnit.SECONDS.sleep(1); } } }
以上程序的执行结果如下:
从上述结果可以看出,这 5 个线程共享的是同一把锁。