TreeMap类pollLastEntry()方法
- pollLastEntry() 方法可在
java.util
包。 - pollLastEntry() 方法用于返回然后删除与此 TreeMap 中存在的最大键元素值链接的条目(键值对)。
- pollLastEntry() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
- pollLastEntry() 方法在返回最后一个条目时不抛出异常。
用法:
public Map.Entry pollLastEntry();
参数:
- 它不接受任何参数。
返回值:
该方法的返回类型是Map.Entry
,它在存在时检索具有最大键元素值的条目,否则返回 null。
例:
// Java program to demonstrate the example
// of Map.Entry pollLastEntry ()
// method of TreeMap
import java.util.*;
public class PollLastEntryOfTreeMap {
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 pollLastEntry() method is to
// return and remove the key-value pairs
// linked with the largest key element value
// i.e. "4"
tm.pollLastEntry();
// Display updated TreeMap tm
System.out.println("tm.pollLastEntry():" + tm);
}
}
输出
tm:{1=C, 2=Php, 3=Java, 4=C++} tm.pollLastEntry():{1=C, 2=Php, 3=Java}
相关用法
- Java TreeMap pollFirstEntry()用法及代码示例
- Java TreeMap putAll()用法及代码示例
- Java TreeMap put()用法及代码示例
- Java TreeMap lastEntry()用法及代码示例
- Java TreeMap remove()用法及代码示例
- Java TreeMap floorEntry()用法及代码示例
- Java TreeMap clear()用法及代码示例
- Java TreeMap firstEntry()用法及代码示例
- Java TreeMap get()用法及代码示例
- Java TreeMap descendingKeySet()用法及代码示例
- Java TreeMap higherEntry()用法及代码示例
- Java TreeMap ceilingEntry()用法及代码示例
- Java TreeMap lastKey()用法及代码示例
- Java TreeMap size()用法及代码示例
- Java TreeMap ceilingEntry()、ceilingKey()用法及代码示例
- Java TreeMap navigableKeySet()用法及代码示例
- Java TreeMap tailMap()用法及代码示例
- Java TreeMap comparator()用法及代码示例
- Java TreeMap ceilingKey()用法及代码示例
- Java TreeMap higherKey()用法及代码示例
注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java TreeMap pollLastEntry() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。