synchronized

synchronized

实现线程间同步的方式有两种:
①使用synchronized同步代码块;
②使用synchronized关键字创建synchronized()方法

synchronized(this)、synchronized(test.class)、
public static synchronized void method(){…}三种方式都是一样的。
静态方法是被所有实例对象共享的,所以给静态方法加锁,会被视为给类加锁。
推荐使用synchronized同步代码块

synchronized同步代码块实例(解决多线程同步的问题):
线程不安全的情况,多个线程争抢同一个资源而出现的不同步的情况。使用synchronized 来让代码块加锁

public class TestTicketRunnable{
    public static void main(String[] a){
        TicketThread tThread = new TicketThread();
        new Thread(tThread).start();
        new Thread(tThread).start();
        new Thread(tThread).start();
    }
}
class TicketThread implements Runnable {
    private int ticket = 5;
    public void run(){
        for (int i = 0; i < 5; i++){
        	synchronized(this) {//给相应的代码块加锁进行线程同步
            if (ticket > 0){
                try {
                    Thread.sleep(300);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                System.out.println(Thread.currentThread().getName() + "卖票:ticket = " + ticket--);
            }
        	}
        }
    }
}

打印结果:

Thread-0卖票:ticket = 5
Thread-0卖票:ticket = 4
Thread-0卖票:ticket = 3
Thread-0卖票:ticket = 2
Thread-0卖票:ticket = 1
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值