作者:北海盗羽翼800 | 来源:互联网 | 2024-10-30 12:31
问题,如题!我先说我目前的方案(我感觉不靠谱,但是又不知道如何测试):12345678910111213public class SaveDatabasePlanCache { private s
问题,如题!
我先说我目前的方案(我感觉不靠谱,但是又不知道如何测试):
1 2 3 4 5 6 7 8 9 10 11 12 13
| public class SaveDatabasePlanCache {
private static Integer vehicleSum=0;
public static Integer getVehicleSum() {
return vehicleSum;
}
public synchronized static void setVehicleSum(Integer vehicleSum) {
SaveDatabasePlanCache.vehicleSum = vehicleSum;
}
} |
测试方案:
1 2 3 4 5 6 7 8 9 10
| TestThread t1=new TestThread("线程1: ");
TestThread t2=new TestThread("线程2: ");
TestThread t3=new TestThread("线程3: ");
TestThread t4=new TestThread("线程4: ");
ExecutorService service=Executors.newFixedThreadPool(4);
service.submit(t1);
service.submit(t2);
service.submit(t3);
service.submit(t4); |
线程代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| public void run() {
int sum=0;
boolean flag=true;
while(flag){
sum=SaveDatabasePlanCache.getVehicleSum();
if(sum==10000){
System.out.println(new Date().toLocaleString()+" "+title+"不执行");
flag=false;
}else{
SaveDatabasePlanCache.setVehicleSum(sum+1);
System.out.println(new Date().toLocaleString()+" "+title+SaveDatabasePlanCache.getVehicleSum());
}
}
} |
上面是我对静态变量的线程安全方案,就是在设置值的时候开启一个线程同步锁的机制,不知道这样是否有效,我在测试的时候,程序死锁过。
请问有什么有效的方法可以测试吗或者解决我当前的问题,谢谢!