初识线程同步

public class TestSynchronized implements Runnable {

 /**
  * @param args
  */
 Timer timer = new Timer();

 public static void main(String[] args) {
  TestSynchronized testSynchronized=new TestSynchronized();//同一个线程对象开启两个线程
  Thread one=new Thread(testSynchronized);
  Thread other=new Thread(testSynchronized);
  one.setName("one");
  other.setName("other");
  one.start();
  other.start();
 }

 public void run() {
  timer.add(Thread.currentThread().getName()); //不同线程执行同一个对象的方法

 }

}

class Timer {
 int num = 0;

 public void add(String name) {
  num++;
  try{
   Thread.sleep(1000);  //线程被打断处,即使没有此方法cpu也可能把时间片让给另外一个线程
   System.out.println(name+"you are"+num);
  }catch(InterruptedException e){
   
  }
  
 }

}

输出结果:

oneyou are2
otheryou are2

原因:线程one在执行run方法的时候内部调用的是同一timer的add方法,num加1后,时间片让给了其他线程;接着线程two执行timer的add方法,num加1这时线程one恢复继续执行add方法里边的其余语句输出num值这时候num已经是2了。注:这里的sleep方法只是放大了线程间轮流执行的效果。

解决办法:利用对象锁(这里是互斥锁)

public class TestSynchronized implements Runnable {

 /**
  * @param args
  */
 Timer timer = new Timer();

 public static void main(String[] args) {
  TestSynchronized testSynchronized = new TestSynchronized();// 同一个线程对象开启两个线程
  Thread one = new Thread(testSynchronized);
  Thread other = new Thread(testSynchronized);
  one.setName("one");
  other.setName("other");
  one.start();
  other.start();
 }

 public void run() {
  timer.add(Thread.currentThread().getName()); // 不同线程执行同一个对象的方法

 }

}

class Timer {
 int num = 0;

 public void add(String name) {

  synchronized (this) {        //某线程执行timer的add方法的时候,就锁住该对象不允许其他线程执行
   num++;
   try {
    Thread.sleep(1000);
    System.out.println(name + "you are" + num);
   } catch (InterruptedException e) {

   }
  }

 }

}

也可以改写为:

class Timer {
 int num = 0;

 public synchronized void add(String name) {  //执行此方法锁定当前对象

  num++;
  try {
   Thread.sleep(1000);
   System.out.println(name + "you are" + num);
  } catch (InterruptedException e) {

  }

 }

}


 

 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值