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


Java NavigableMap pollFirstEntry()用法及代码示例


Java中NavigableMap接口的pollFirstEntry()方法用于删除并返回与此映射中最小键关联的键-值映射;如果映射为空,则为null。

用法

Map.Entry< K, V > pollFirstEntry()

其中,K是此映射维护的键的类型,V是映射到键的值的类型。


参数:此函数不接受任何参数。

返回值:将最小键从此映射中移除后,它返回与最小键关联的键-值映射;如果映射为空,则返回null。

以下程序说明了Java中的pollFirstEntry()方法:

程序1:当键为整数时。

// Java code to demonstrate the working of 
// pollFirstEntry() method 
  
import java.io.*; 
import java.util.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Declaring the NavigableMap of Integer and String 
        NavigableMap<Integer, String> nmmp = new TreeMap<>(); 
  
        // assigning the values in the NavigableMap 
        // using put() 
        nmmp.put(2, "two"); 
        nmmp.put(7, "seven"); 
        nmmp.put(3, "three"); 
  
        System.out.println("First removed key-value from the map : "
                           + nmmp.pollFirstEntry()); 
    } 
}
输出:
First removed key-value from the map : 2=two

程序2:当键是字符串时。

// Java code to demonstrate the working of 
// pollFirstEntry() method 
  
import java.io.*; 
import java.util.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Declaring the NavigableMap of Integer and String 
        NavigableMap<String, String> tmmp = new TreeMap<>(); 
  
        // assigning the values in the NavigableMap 
        // using put() 
        tmmp.put("one", "two"); 
        tmmp.put("six", "seven"); 
        tmmp.put("two", "three"); 
  
        System.out.println("First removed key-value from the map : " 
                                         + tmmp.pollFirstEntry()); 
    } 
}
输出:
First removed key-value from the map : one=two

参考: https://docs.oracle.com/javase/10/docs/api/java/util/NavigableMap.html#pollFirstEntry()



相关用法


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