A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 常万 中级黑马   /  2012-4-17 23:09  /  1585 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

多线程中synchronized的锁定方式
同一个对象中的一个synchronized方法如果已有一个线程进入,则其它的线程必须等该线程结束后才能进入该方法。那么,如果一个类中有多个synchronized方法,会有什么情况呢?

看下面一段代码:

public class Test {
static Test t = new Test();
static Test2 t2 = new Test2();

public static void main(String[] args) {
// TODO Auto-generated method stub

TestThread tt = t.new TestThread();
tt.start();
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
t2.test1();
}

class TestThread extends Thread {
@Override
public void run() {
// TODO Auto-generated method stub
t2.test2();
}
}
}

class Test2 {
public synchronized void test1() {
System.out.println("test1 called");
}

public synchronized void test2() {
System.out.println("test2 called");
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("test2 exit");
}
}

运行结果如下:

test2 called
test2 exit
test1 called

很明显,当对象t2的synchronized方法test2被线程tt调用时,主线程也无法进入其test1方法,直到线程tt对test2方法的调用结束,主线程才能进入test1方法。

结论,对于synchronized方法,Java采用的是对象锁定的方式,当任何一个synchronized方法被访问的时候,该对象中的其它synchronized方法将全部不能被访问。

1 个回复

倒序浏览
synchronized(),是Java中的锁,cpu在微观上一个时刻只能执行一个命令,所以当cpu被锁住时,所有现成都只能等待,一把锁锁住
全盘等待!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马