Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for key2 (0.14 sec)

  1. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

         * @param map
         *            マップ
         * @param key
         *            指定される値が関連付けられるキー
         * @param value
         *            指定されるキーに関連付けられる値
         * @return 指定されたキーと関連付けられていた以前の値または、キーに関連付けられる値
         * @see ConcurrentHashMap#putIfAbsent(Object, Object)
         */
        public static <K, V> V putIfAbsent(final ConcurrentMap<K, V> map, final K key, final V value) {
            final V exists = map.putIfAbsent(key, value);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 53.9K bytes
    - Viewed (0)
Back to top