• Java8-ConcurrentHashMap


    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.ForkJoinPool;
    
    public class ConcurrentHashMap1 {
    
        public static void main(String[] args) {
            System.out.println("Parallelism: " + ForkJoinPool.getCommonPoolParallelism());
    
            testForEach();
            testSearch();
            testReduce();
        }
    
        private static void testReduce() {
            ConcurrentHashMap<String, String> map = new ConcurrentHashMap<>();
            map.putIfAbsent("foo", "bar");
            map.putIfAbsent("han", "solo");
            map.putIfAbsent("r2", "d2");
            map.putIfAbsent("c3", "p0");
    
            String reduced = map.reduce(1, (key, value) -> key + "=" + value,
                    (s1, s2) -> s1 + ", " + s2);
    
            System.out.println(reduced);
        }
    
        private static void testSearch() {
            ConcurrentHashMap<String, String> map = new ConcurrentHashMap<>();
            map.putIfAbsent("foo", "bar");
            map.putIfAbsent("han", "solo");
            map.putIfAbsent("r2", "d2");
            map.putIfAbsent("c3", "p0");
    
            System.out.println("
    search()
    ");
    
            String result1 = map.search(1, (key, value) -> {
                System.out.println(Thread.currentThread().getName());
                if (key.equals("foo") && value.equals("bar")) {
                    return "foobar";
                }
                return null;
            });
    
            System.out.println(result1);
    
            System.out.println("
    searchValues()
    ");
    
            String result2 = map.searchValues(1, value -> {
                System.out.println(Thread.currentThread().getName());
                if (value.length() > 3) {
                    return value;
                }
                return null;
            });
    
            System.out.println(result2);
        }
    
        private static void testForEach() {
            ConcurrentHashMap<String, String> map = new ConcurrentHashMap<>();
            map.putIfAbsent("foo", "bar");
            map.putIfAbsent("han", "solo");
            map.putIfAbsent("r2", "d2");
            map.putIfAbsent("c3", "p0");
    
            map.forEach(1, (key, value) -> System.out.printf("key: %s; value: %s; thread: %s
    ", key, value, Thread.currentThread().getName()));
    //        map.forEach(5, (key, value) -> System.out.printf("key: %s; value: %s; thread: %s
    ", key, value, Thread.currentThread().getName()));
    
            System.out.println(map.mappingCount());
        }
    
    }
    
  • 相关阅读:
    线性结构(二)--- 双链表
    线性结构(二)----单链表
    线性结构(二)---队列
    线性结构(二)--- 栈
    谁才是真正的资深开发者?
    在Tiled Map中使用碰撞检测
    Android横屏竖屏切换的问题
    android activity横竖屏切换,Activity重新创建问题解决!
    2D中如何判断一点在另一个点的那个方位
    浅析android应用增量升级
  • 原文地址:https://www.cnblogs.com/bilaisheng/p/10210902.html
Copyright © 2020-2023  润新知