在Java中删除TreeMap的第一个条目
要删除TreeMap的第一个条目,请使用pollFirstEntry()方法。
让我们首先创建一个TreeMap并添加元素-
TreeMap<Integer,String> m = new TreeMap<Integer,String>(); m.put(1,"India"); m.put(2,"US"); m.put(3,"Australia"); m.put(4,"Netherlands"); m.put(5,"Canada");
现在删除第一个条目-
m.pollFirstEntry()
以下是删除TreeMap的第一个条目的示例。
示例
import java.util.*;
public class Demo {
public static void main(String args[]) {
TreeMap<Integer,String> m = new TreeMap<Integer,String>();
m.put(1,"India");
m.put(2,"US");
m.put(3,"Australia");
m.put(4,"Netherlands");
m.put(5,"Canada");
System.out.println("TreeMap Elements = "+m);
System.out.println("Removing First Entry : "+m.pollFirstEntry());
System.out.println("Updated TreeMap Elements = "+m);
}
}输出结果
TreeMap Elements = {1=India, 2=US, 3=Australia, 4=Netherlands, 5=Canada}
Removing First Entry = 1=India
Updated TreeMap Elements = {2=US, 3=Australia, 4=Netherlands, 5=Canada}热门推荐
6 保研的祝福语简短
10 年轻20岁祝福语简短
11 朋友结婚祝福语信息简短
12 女孩婚礼贺卡祝福语简短
13 30段点歌简短祝福语
14 虎年春节祝福语图文简短
15 写给后妈祝福语大全简短
16 简短回复生日祝福语
17 校长送毕业祝福语简短
18 毕业立体贺卡祝福语简短