当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ConcurrentSkipListMap put()用法及代码示例


java.util.concurrent.ConcurrentSkipListMap的put()方法是Java中的内置函数,它将指定值与该映射中的指定键相关联。如果该映射先前包含该键的映射,则替换旧值。

用法:

public V put(K key, V value)

参数:该函数接受两个强制性参数:


  • key它指定与指定值关联的键
  • value:它指定与指定键关联的值。

返回值:该函数返回与指定键关联的先前值。如果指定键没有映射,则此方法返回null。

以下示例程序旨在说明上述方法:

示例1:

// Java Program Demonstrate put() 
// method of ConcurrentSkipListMap 
  
import java.util.concurrent.*; 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // Initializing the map 
        ConcurrentSkipListMap<Integer, Integer> 
            mpp = new ConcurrentSkipListMap<Integer, 
                                            Integer>(); 
  
        // Adding elements to this map 
        for (int i = 1; i <= 5; i++) 
            mpp.put(i, i); 
  
        // put() operation on the map 
        System.out.println("After put(): "
                           + mpp); 
    } 
}
输出:
After put(): {1=1, 2=2, 3=3, 4=4, 5=5}

示例2:

// Java Program Demonstrate put() 
// method of ConcurrentSkipListMap 
  
import java.util.concurrent.*; 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // Initializing the map 
        ConcurrentSkipListMap<Integer, Integer> 
            mpp = new ConcurrentSkipListMap<Integer, 
                                            Integer>(); 
  
        // Adding elements to this map 
        for (int i = 1; i <= 9; i++) 
            mpp.put(i, i); 
  
        // put() operation on the map 
        System.out.println("After put(): "
                           + mpp); 
    } 
}
输出:
After put(): {1=1, 2=2, 3=3, 4=4, 5=5, 6=6, 7=7, 8=8, 9=9}

参考: https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/ConcurrentSkipListMap.html#put-K-V-



相关用法


注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 ConcurrentSkipListMap put() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。