我们知道,synchronized是为了解决多个线程访问同一个数据时,有可能造成数据前后不一致的现象,例如下面的程序就是数据前后不一致的例子:
public class TestSync implements Runnable {
Timer timer = new Timer();
public static void main(String[] args) {
TestSync test = new TestSync();
Thread t1 = new Thread(test);
Thread t2 = new Thread(test);
t1.setName("t1");
t2.setName("t2");
t1.start();
t2.start();
}
public void run() {
timer.add(Thread.currentThread().getName());
}
}
class Timer {
private static int num = 0;
public void add(String name) {
num ++;
try {
Thread.sleep(1);
} catch(InterruptedException e) {
}
System.out.println(name + "你是第" + num + "个使用timer的线程");
}
}
执行结果:
分析过程:首先程序从main方法开始执行,在第5行和第6行共new了两个线程。然后t1线程