博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java的同步方法
阅读量:5956 次
发布时间:2019-06-19

本文共 2410 字,大约阅读时间需要 8 分钟。

同步方法锁的是对象

When one thread is executing a synchronized method for an object, all other threads that invoke synchronized methods for the same object block (suspend execution) until the first thread is done with the object.

当一个线程正在执行某个对象的同步方法的时候,其所有要执行这个对象的任意一个同步方法的其他线程都得等待,直到对象锁被释放。

 

在下面的例子中,只有线程1和线程3能够得到执行机会,因为线程2调用的也是一个同步方法value2(), 而线程1调用的value1()永远不返回(就不释放对象counter的锁).

 

public class Counter {

    private int counter;

    public synchronized void value1(){

    
       counter = 1;
       while(true){
   String threadName = Thread.currentThread().getName();
          System.out.println("我是一个线程,我的名字是 " + threadName + "我调用的是value1()");
   System.out.println("一旦我获得对象" + this + "的内部锁,其他线程都无法执行了");
   System.out.println("我只是想说明synchornized 方法锁的是对象,用的是对象的内部锁intrinsic locks");
       }
    }
 
    /**
    public void value3(){
     synchronized(this){
        counter = 1;
        while(true){
    String threadName = Thread.currentThread().getName();
           System.out.println("我是一个线程,我的名字是 " + threadName);
    System.out.println("一旦我获得对象" + this + "的内部锁,其他线程都无法执行了");
    System.out.println("我只是想说明synchornized 方法锁的是对象,用的是对象的内部锁intrinsic locks");
        }
     }
    }
    **/

    public synchronized void value2(){

       counter = 2;
       while(true){
   String threadName = Thread.currentThread().getName();
          System.out.println("我是一个线程,我的名字是 " + threadName + "我调用的是value2()");
   System.out.println("一旦我获得对象" + this + "的内部锁,其他线程都无法执行了");
   System.out.println("我只是想说明synchornized 方法锁的是对象,用的是对象的内部锁intrinsic locks");
       }
    }

    public void value(){

      while(true){
   String threadName = Thread.currentThread().getName();
   System.out.println("我是一个线程,我的名字是 " + threadName); 
   System.out.println("我调用的是对象" + this + "的不加synchronzied方法value(), 我不独占这个对象,其他线程可以调用,其实我人很好" ); 
      }
    }
   
    public static void main(String... args){
     Counter ctr = new Counter();
    
     new Thread1(ctr).start();
     new Thread2(ctr).start();
     new Thread3(ctr).start();

    }

   
    private static class Thread1 extends Thread{
     private Counter counter;
     public Thread1(Counter counter){
    this.counter = counter;
    this.setName(" 线程 1 ");
     }
    
     public void run(){
    counter.value1(); 
     }
   }

   private static class Thread2 extends Thread{

     private Counter counter;
     public Thread2(Counter counter){
    this.counter = counter;
    this.setName(" 线程 2 ");
     }

     public void run(){

    counter.value2(); 
     }

   }

   private static class Thread3 extends Thread{

     private Counter counter;
    
     public Thread3(Counter counter){
    this.counter = counter;
    this.setName(" 线程 3 ");
     }

     public void run(){

    counter.value(); 
     }
   }

}

转载于:https://www.cnblogs.com/cando/archive/2011/12/20/2294634.html

你可能感兴趣的文章
解决vim中不能使用小键盘
查看>>
jenkins权限管理,实现不同用户组显示对应视图views中不同的jobs
查看>>
我的友情链接
查看>>
CentOS定时同步系统时间
查看>>
批量删除用户--Shell脚本
查看>>
如何辨别android开发包的安全性
查看>>
Eclipse Java @Override 报错
查看>>
知道双字节码, 如何获取汉字 - 回复 "pinezhou" 的问题
查看>>
linux中cacti和nagios整合
查看>>
Parallels Desktop12推出 新增Parallels Toolbox
查看>>
Python高效编程技巧
查看>>
Kafka服务端脚本详解(1)一topics
查看>>
js中var self=this的解释
查看>>
面试题
查看>>
Facebook 接入之获取各个配置参数
查看>>
linux的日志服务器关于屏蔽一些关键字的方法
查看>>
事情的两面性
查看>>
只要会营销,shi都能卖出去?
查看>>
sed单行处理命令奇偶行输出
查看>>
VC++深入详解学习笔记1
查看>>