在 Java 中,基元数据类型是线程安全的吗?
2022-09-01 03:36:19
在Java中,像&thread-safe这样的原始数据类型是安全的吗?我已经执行了以下代码,但有时看不到预期的结果500。int
short
public class SampleThree extends Thread
{
static long wakeUpTime = System.currentTimeMillis() + (1000*20);
static int inT;
public static void main(String args[])
{
System.out.println("initial:" + inT);
for(int i=0; i<500; i++)
new SampleThree().start();
try {
Thread.sleep(wakeUpTime - System.currentTimeMillis() + (1000*30));
System.out.println("o/p:" + inT);
}
catch(Exception e){
e.printStackTrace();
}
}
public void run()
{
try {
long s = wakeUpTime - System.currentTimeMillis();
System.out.println("will sleep ms: " + s);
Thread.sleep(s);
inT++; // System.out.println(inT);
}
catch(Exception e) {
e.printStackTrace();
}
}
}
在这里,500线程将同时更新int变量。主线程等待并发更新完成后,打印值。inT
inT
在此处查找类似示例