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


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


TreeMap类pollFirstEntry()方法

  • pollFirstEntry() 方法可在java.util包。
  • pollFirstEntry() 方法用于返回然后删除与此 TreeMap 中存在的最低键元素值链接的条目(键值对)。
  • pollFirstEntry() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • pollFirstEntry() 方法在返回第一个条目时不抛出异常。

用法:

    public Map.Entry pollFirstEntry();

参数:

  • 它不接受任何参数。

返回值:

该方法的返回类型是Map.Entry,它在存在时检索具有最低键元素值的条目,否则返回 null。

例:

// Java program to demonstrate the example 
// of Map.Entry pollFirstEntry () 
// method of TreeMap 

import java.util.*;

public class PollFirstEntryOfTreeMap {
    public static void main(String[] args) {
        // Instantiates TreeMap
        TreeMap < Integer, String > tm = new TreeMap < Integer, String > ();

        // By using put() method is
        // to put the key-value pairs in
        // treemap tm
        tm.put(1, "C");
        tm.put(4, "C++");
        tm.put(3, "Java");
        tm.put(2, "Php");

        // Display TreeMap tm
        System.out.println("tm:" + tm);

        // By using pollFirstEntry() method is to
        // return and remove the key-value pairs
        // linked with the least key element value
        // i.e. "1"
        tm.pollFirstEntry();

        // Display updated TreeMap tm
        System.out.println("tm.pollFirstEntry():" + tm);
    }
}

输出

tm:{1=C, 2=Php, 3=Java, 4=C++}
tm.pollFirstEntry():{2=Php, 3=Java, 4=C++}


相关用法


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