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

java synchronized(syncObject) 和 synchronized(this)

时间:2014-10-23 09:16:15      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   java   sp   on   art   代码   ad   

用synchronized(syncObject)看起来比较好如下:

public class test_sync extends Thread {

Integer x = 0;

public test_sync() {

}

public void run() {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
set_x(10);
}

public void set_x(int a) {
x = a;
synchronized (x) {
x.notify();
}
System.out.println("set_x " + x);
}

public int get_x() {
synchronized (x) {
try {
x.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
return x;
}

public static void main(String[] args) {
test_sync t = new test_sync();
t.start();
System.out.println("get_x " + t.get_x());
}
}

但是这段代码不能工作!

修改如下:

public class test_sync extends Thread {

Integer x = 0;

public test_sync() {

}

public void run() {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
set_x(10);
}

public void set_x(int a) {
x = a;
synchronized (this) {
notify();
}
System.out.println("set_x " + x);
}

public int get_x() {
synchronized (this) {
try {
wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
return x;
}

public static void main(String[] args) {
test_sync t = new test_sync();
t.start();
System.out.println("get_x " + t.get_x());
}
}

把synchronized (x)  改为synchronized (this); 

把x.notyfy()  改为notyfy(); 

把x.wait()  改为wait(); 

 就能工作,里面的差异是什么:

 

java synchronized(syncObject) 和 synchronized(this)

标签:style   io   ar   java   sp   on   art   代码   ad   

原文地址:http://www.cnblogs.com/lion382/p/4044861.html

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