静态锁和实例锁

 

Java中可以对静态方法和实例方法使用synchronized

 

当在静态方法前面加synchronized 表示锁定class , 当多个线程同时调用静态方法时会阻塞

 

当在实例方法前面加synchronized 表示锁定class的单个实例 , 当多个线程同时调用class的实例的实例方法时会阻塞

 

注意:静态方法synchronized 和实例方法synchronized 互不干扰,也就是说当静态方法锁后,不影响实例方法调用,反过来一样

 

 

package com.lottery;

public class Test {

	public static void main(String[] args) {
		final Lock lock = new Lock();

		new Thread() {
			public void run() {
				Lock.method2();
			}
		}.start();

		try {
			Thread.sleep(100);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}

		new Thread() {
			public void run() {
				lock.method1();
				//Lock.method2();
			}
		}.start();
	}
}

class Lock {

	public synchronized void method1() {
		System.out.println("method1 start");
		try {
			Thread.sleep(1000 * 10);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
		System.out.println("method1 end");
	}

	public static synchronized void method2() {
		System.out.println("method2 start");
		try {
			Thread.sleep(1000 * 10);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
		System.out.println("method2 end");
	}
}
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值