Java TreeMap pollLastEntry() 方法



描述

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

声明

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

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

参数

返回值

方法调用返回此映射中移除的最后一个条目,如果此映射为空则返回 null。

异常

从 Integer,Integer 对的 TreeMap 获取最后一个条目示例

以下示例演示了 Java TreeMap pollLastEntry() 方法的使用,用于移除并获取此映射中最大键关联的键值映射。我们创建了一个 Integer,Integer 对的 TreeMap 对象。然后添加了一些条目,打印映射,然后使用 pollLastEntry() 打印给定键的返回值,并再次打印映射以查看移除条目的效果。

package com.tutorialspoint;

import java.util.TreeMap;

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

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

      // populating tree map
      treemap.put(2, 2);
      treemap.put(1, 1);
      treemap.put(3, 3);
      treemap.put(6, 6);
      treemap.put(5, 5);   

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

输出

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

Value before poll: {1=1, 2=2, 3=3, 5=5, 6=6}
Value returned: 6=6
Value after poll: {1=1, 2=2, 3=3, 5=5}

从 Integer,String 对的 TreeMap 获取最后一个条目示例

以下示例演示了 Java TreeMap pollLastEntry() 方法的使用,用于移除并获取此映射中最大键关联的键值映射。我们创建了一个 Integer,String 对的 TreeMap 对象。然后添加了一些条目,打印映射,然后使用 pollLastEntry() 打印给定键的返回值,并再次打印映射以查看移除条目的效果。

package com.tutorialspoint;

import java.util.TreeMap;

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

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

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

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

输出

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

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

从 Integer,Object 对的 TreeMap 获取最后一个条目示例

以下示例演示了 Java TreeMap pollLastEntry() 方法的使用,用于移除并获取此映射中最大键关联的键值映射。我们创建了一个 Integer,Student 对的 TreeMap 对象。然后添加了一些条目,打印映射,然后使用 pollLastEntry() 打印给定键的返回值,并再次打印映射以查看移除条目的效果。

package com.tutorialspoint;

import java.util.TreeMap;

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

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

      // populating tree map
      treemap.put(2, new Student(2, "Robert"));
      treemap.put(1, new Student(1, "Julie"));  
      treemap.put(3, new Student(3, "Adam"));
      treemap.put(6, new Student(6, "Julia"));
      treemap.put(5, new Student(5, "Tom")); 

      // polling last entry
      System.out.println("Value before poll: "+ treemap);            
      System.out.println("Value returned: "+ treemap.pollLastEntry());      
      System.out.println("Value after poll: "+ treemap);
   }    
}
class Student {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }
   @Override
   public boolean equals(Object obj) {
      if(obj == null) return false;
      Student s = (Student)obj;
      return this.rollNo == s.rollNo && this.name.equalsIgnoreCase(s.name);
   }
}

输出

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

Value before poll: {1=[ 1, Julie ], 2=[ 2, Robert ], 3=[ 3, Adam ], 5=[ 5, Tom ], 6=[ 6, Julia ]}
Value returned: 6=[ 6, Julia ]
Value after poll: {1=[ 1, Julie ], 2=[ 2, Robert ], 3=[ 3, Adam ], 5=[ 5, Tom ]}
java_util_treemap.htm
广告