java多线程详解四 验证同步函数的锁是this

验证同步函数的锁是this

/**
 * Created by Perk on 2016/7/17.
 */

class Ticket implements Runnable {

private int num = 200;
Object object = new Object();
boolean flag = true;

@Override
public void run() {
    if (flag) {
        while (true) {
            try {
                Thread.sleep(10);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            synchronized (obj) {
                if (num > 0) {
                    System.out.println(num + ":" + Thread.currentThread().getName() + "synblock");
                    num--;
                }
            }
        }
    } else {
        while (true) {
            try {
                Thread.sleep(10);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            show();
            }
        }

}


public synchronized void show() {
    if (num > 0) {
        System.out.println(num + ":" + Thread.currentThread().getName() + "function");
        num--;
    }
}
}

public class TicketDemo {
public static void main(String[] args) {
    Ticket ticket1=new Ticket();

   Thread thread1=new Thread(ticket1);
   Thread thread2=new Thread(ticket1);

    thread1.start();
    try {
        Thread.sleep(10);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
    ticket1.flag=false;
    thread2.start();

}
}

通过设置flag 使两个线程分别执行同步代码块和同步函数的代码。

 synchronized (this) {
     if (num > 0) {
     System.out.println(num + ":" + Thread.currentThread().getName() + "synblock");
     num--;
   }
}

将同步代码块的锁换成this.发现同步安全问题解决了,所有同步函数使用的同步锁是this.

如果在同步函数上加上static关键字则又会出现同步安全问题。

 public  static synchronized void show() {
    if (num > 0) {
    System.out.println(num + ":" + Thread.currentThread().getName() + "function");
    num--;
   }
}

将同步代码块的锁设为this.getClass()或 Ticket.class可以解决同步安全问题

   synchronized (this.getClass()) { //Ticket.class
      if (num > 0) {
        System.out.println(num + ":" + Thread.currentThread().getName() + "synblock");
       num--;
   }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值