concurrenthashmap

    3熱度

    5回答

    如果我使用ConcurrentHashMap(其中put是線程安全的),並且我提供了一個使用ConcurrentHashMap的公共函數myPut - 我需要同步我的函數嗎? 含義:是否應該同步? ConcurrentHashMap map; public void myPut(int something) { this.map.put(something); }