同步方法(非静态)

1 . 不要在run 方法上面添加synchronized
2 . 同步方法 锁是 this 还要要求 锁是 唯一的 , 同步方法要写在资源类里面
3 . 注意处理下面的run方法和saleTicket()方法的关系
4 .

package com.qf.demo;

public class Test3 {

    public static void main(String[] args) {
        Window2 window2 = new Window2();
        Thread thread = new Thread(window2,"马什么梅");
        Thread thread2 = new Thread(window2,"什么冬梅");
        Thread thread3= new Thread(window2,"马东什么");
        Thread thread4 = new Thread(window2,"马冬梅啊");

        thread.start();
        thread2.start();
        thread3.start();
        thread4.start();

    }
}
/**
 * 同步方法
 * 
 * @author Administrator
 *
 */
class Window2 implements Runnable {
    int ticket = 100;

    public  void run() {// 不要在run 方法上面添加synchronized
        while (true) {
            if(!saleTicket()){
                break;
            }
        }
    }

    // 同步方法 锁是 this  还要要求 锁是 唯一的 , 同步方法要写在资源类里面
    public synchronized boolean saleTicket(){
        if (ticket > 0) {
            ticket--;
            try {
                Thread.sleep(1000);// 会释放cpu , 但是没有释放锁资源
            } catch (InterruptedException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            System.out.println(Thread.currentThread().getName() + "卖了1张票,还剩" + ticket);
            return true;
        } else{
            return false;
        }

    }

}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值