线程加锁this详解

1:用this和类名.class却别对象时加锁的不同
用this
多线程调用同方法时 要调用的同一个第一对象的方法 不然打达不到线程加锁 因为他调用的是不同对象的锁
A a = new A();
Thread th1 = new Thread(a);
th1.start();
Thread th2 = new Thread(a);
th2.start();
Thread th3 = new Thread(a);
th3.start();
Thread th4 = new Thread(a);
th4.start();

public void run() {
while(flag){
synchronized (this) {
if(count<TATOL){
salticket();
}else{
flag = false;
}
}
try {
Thread.sleep(100);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
用类名.class
不管实例化多少个对象 是对类对象进行加锁(反射)所以可以实例化多个对象 但仍可实现对同方法的加锁
Thread th1 = new Thread( new A());
th1.start();
Thread th2 = new Thread( new A());
th2.start();
Thread th3 = new Thread( new A());
th3.start();
public void run() {
while(flag){
synchronized (A.class) {
if(count<TATOL){
salticket();
}else{
flag = false;
}
}
try {
Thread.sleep(100);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值