- 浏览: 979 次
- 性别:
- 来自: 北京
最近访客 更多访客>>
最新评论
-
repsihWDX:
?我没看懂。你是指msg这个属性由于public 成为非安全的 ...
关于synchronized对象锁问题
文章列表
public class Test implements Runnable{
public String msg = "show"
public synchronized void show() {
while (true) {
System.out.println(msg);
}
}
public void print() {
while (true) {
System. ...