我正在开发一个多线程程序,其中每个线程计算两个数字的 GCD,将数字和 GCD 存储到 a中,并在所有线程完成后TreeMap
打印出。TreeMap
我应该使用什么样的方法来确保只有一个线程同时存储数据,以及如何使用最后一个线程在TreeMap
准备打印时打印?
for (int i = 0; i < myList.size(); ++i) {
for (int j = i + 1; j < myList.size(); ++j) {
modulus1 = myList.get(i);
modulus2 = myList.get(j);
pool.execute(new ThreadProcessRunnable(modulus1, modulus2, myMap));
}
}
public void run() {
ThreadProcess process = null;
try {
// Only one thread should execute the following code
for (Map.Entry<BigInteger, ArrayList<BigInteger>> entry : myMap.entrySet()) {
System.out.println("key ->" + entry.getKey() + ", value->" + entry.getValue());
}
} catch (Exception e) {
System.err.println("Exception ERROR");
}