java.util.TreeMap.pollFirstEntry() 方法

描述

pollFirstEntry() 方法用于移除并返回与此映射中最小键关联的键值映射,如果映射为空,则返回 null。


声明

以下是 java.util.TreeMap.pollFirstEntry() 方法的声明。

public Map.Entry<K,V> pollFirstEntry()

参数

NA


返回值

该方法调用返回此映射的已删除第一个条目,如果此映射为空,则返回 null。


异常

NA


示例

下面的例子展示了 java.util.TreeMap.pollFirstEntry() 的用法。

package com.tutorialspoint;

import java.util.*;

public class TreeMapDemo {
   public static void main(String[] args) {

      // creating tree map 
      TreeMap<Integer, String> treemap = new TreeMap<Integer, String>();

      // populating tree map
      treemap.put(2, "two");
      treemap.put(1, "one");
      treemap.put(3, "three");
      treemap.put(6, "six");
      treemap.put(5, "five");   

      // polling first entry
      System.out.println("Value before poll: "+ treemap);            
      System.out.println("Value returned: "+ treemap.pollFirstEntry());      
      System.out.println("Value after poll: "+ treemap);
   }     
}

让我们编译并运行上面的程序,这将产生以下结果.

Value before poll: {1=one, 2=two, 3=three, 5=five, 6=six}
Value returned: 1=one
Value after poll: {2=two, 3=three, 5=five, 6=six}