public class AccountSync implements Runnable{
static Integer count = 0;
static String str ="111";
@Override
public void run() {
for(int j=0;j<10000000;j++){
synchronized(count){
count++;
}
}
}
// static AccountSync account = new AccountSync();
public static void main(String[] args) throws InterruptedException {
AccountSync account = new AccountSync();
Thread t1 = new Thread(account);
Thread t2 = new Thread(account);
t1.start();
t2.start();
t1.join();
t2.join();
System.out.println(count);
}
}
我想是不是因为,当count加到一定值的时候,其实这个对象本身变化了,这时候的synchronized其实并没有锁住,会有线程同时进入方法
是的,根据你的回复我查了下,Integer在执行加操作会设计自动装箱和拆箱操作,返回的对象是一个新对象
http://gao-xianglong.iteye.com/blog/2396071
学习了。多谢。看了半天,就是加了锁啊