参考文章
http://geek.youkuaiyun.com/news/detail/242345
实例1
public class TestSync2 implements Runnable {
int b = 100;
synchronized void m1() throws InterruptedException {
b = 1000;
Thread.sleep(500); // 6
System.out.println("b=" + b);
}
synchronized void m2() throws InterruptedException {
Thread.sleep(250); // 5
b = 2000;
}
public static void main(String[] args) throws InterruptedException {
TestSync2 tt = new TestSync2();
Thread t = new Thread(tt); // 1
t.start(); // 2
tt.m2(); // 3
System.out.println("main thread b=" + tt.b); // 4
}
@Override
public void run() {
try {
m1();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
我运行程序输出的结果是
main thread b=1000
b=1000
要点
synchronized直接作用于实例方法:相当于对当前实例加锁,进入同步代码前要获得当前实例的锁。
本文通过一个具体的Java程序示例,展示了synchronized关键字应用于实例方法的效果。解释了如何通过synchronized实现线程间的同步,确保同一时刻只有一个线程能够访问被同步的方法。
5026

被折叠的 条评论
为什么被折叠?



