码迷,mamicode.com
首页 > 编程语言 > 详细

多线程 synchronized锁定当前对象

时间:2018-08-25 17:25:34      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:void   read   eth   nbsp   span   对象   锁定   col   sys   

synchronized(this) 和synchronized一样,都是锁定当前对象。

public class Task {

    synchronized public void otherMethod(){
        System.out.println("--------run otherMethod");
    }

    public void doLongTimeTask(){
        synchronized (this){
            for (int i=0;i<10000;i++){
                System.out.println("synchronized threadName="+Thread.currentThread().getName()+" i="+(i+1));
            }
        }

    }
}

 

多线程 synchronized锁定当前对象

标签:void   read   eth   nbsp   span   对象   锁定   col   sys   

原文地址:https://www.cnblogs.com/newlangwen/p/9534595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!