請改造以下類,使之在多線程異步調用時,而不會出數據覆蓋,即並發沖突
pulbi class Math {
private static int result = 0;
public static int sum(int a, int b){
result = a + b;
return result;
}
}
請教大神 怎麼做
如果不考慮同步控制粒度問題,直接把synchronized(Math.class) 加在當前類定義上的,是可行的
當然控制同步的代碼段越小越好。synchronized控制的范圍越小越好(實現方式有很多種)
最好是手動建個同步鎖,
如:
public class Math {
private static int result = 0;
public static final Object lock1 = new Object();
public static int sum(int a, int b){
synchronized (lock1) {
result = a + b;
return result;
}
}
}