本文整理匯總了Java中java.util.concurrent.ConcurrentHashMap.reduceKeys方法的典型用法代碼示例。如果您正苦於以下問題:Java ConcurrentHashMap.reduceKeys方法的具體用法?Java ConcurrentHashMap.reduceKeys怎麽用?Java ConcurrentHashMap.reduceKeys使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類java.util.concurrent.ConcurrentHashMap
的用法示例。
在下文中一共展示了ConcurrentHashMap.reduceKeys方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testReduceKeysSequentially
import java.util.concurrent.ConcurrentHashMap; //導入方法依賴的package包/類
/**
* reduceKeysSequentially accumulates across all keys,
*/
public void testReduceKeysSequentially() {
ConcurrentHashMap<Long, Long> m = longMap();
Long r;
r = m.reduceKeys(Long.MAX_VALUE, (Long x, Long y) -> Long.valueOf(x.longValue() + y.longValue()));
assertEquals((long)r, (long)SIZE * (SIZE - 1) / 2);
}
示例2: testReduceValuesSequentially
import java.util.concurrent.ConcurrentHashMap; //導入方法依賴的package包/類
/**
* reduceValuesSequentially accumulates across all values
*/
public void testReduceValuesSequentially() {
ConcurrentHashMap<Long, Long> m = longMap();
Long r;
r = m.reduceKeys(Long.MAX_VALUE, (Long x, Long y) -> Long.valueOf(x.longValue() + y.longValue()));
assertEquals((long)r, (long)SIZE * (SIZE - 1) / 2);
}
示例3: testReduceKeysInParallel
import java.util.concurrent.ConcurrentHashMap; //導入方法依賴的package包/類
/**
* reduceKeysInParallel accumulates across all keys
*/
public void testReduceKeysInParallel() {
ConcurrentHashMap<Long, Long> m = longMap();
Long r;
r = m.reduceKeys(1L, (Long x, Long y) -> Long.valueOf(x.longValue() + y.longValue()));
assertEquals((long)r, (long)SIZE * (SIZE - 1) / 2);
}