即使我使用synchronized
,我也无法访问代码的最后一行。
但是,如果我在循环之间添加一些东西,它运作良好。
public static void main(String[] args) {
int test_time = 5;
for (int i = 0; i < 100000; i++) {
//warm up
}
long t = 0;
t = System.currentTimeMillis();
byte[] b = new byte[0];
for (int i = 0; i < test_time; i++) {
new Thread(new Runnable() {
@Override
public void run() {
String i = getUserInf(); //get something from web
synchronized (b) {
++times;
System.out.println(times);
}
}
}).start();
}
while (times != test_time){
// System.out.println(String.format("times=%s,test_time=%s", times,test_time));
// if i added this line, it worked well
}
System.out.println("time:" + (System.currentTimeMillis() - t));
}
答案 0 :(得分:3)
您需要将变量times
声明为volatile int
。因为当它从主线程读入while循环时,它不受b
的保护。对System.out.println
的调用已同步,因此times
的值会更新并变为可见。