Java中HashMap常用方法-增删改查遍历排序索引

5 篇文章 0 订阅
5 篇文章 0 订阅
import java.util.HashMap;

HashMap<Integer, Integer> hashmap = new HashMap<>();

// 1. 增
hashmap.put(1, 100);
hashmap.put(2, 200);
hashmap.put(3, 300);
hashmap.put(4, 400);

// 2. key集合,用于遍历所有的键
System.out.println("hashmap.keySet() = " + hashmap.keySet());
for(Integer key : hashmap.keySet()){
    System.out.println(key + " ");
}

// 3. value集合,用于遍历所有的值
System.out.println(hashmap.values());
for(Integer value : hashmap.values()){
    System.out.println(value + " ");
}

// 4. 遍历所有键值对
for(Integer key : hashmap.keySet()){
    // 5. 获取key的值
    System.out.println(key + ": " + hashmap.get(key));
}

// 6. 删
hashmap.remove(1);

// 7. 查
boolean bool = hashmap.containsValue(200);
boolean bool1 = hashmap.containsKey(3);

// 8. 改
hashmap.put(4, 500);

// 9. 排序
// (1) TreeMap   按id排序
TreeMap<Integer, Integer> sortedMap = new TreeMap<>();
sortedMap.putAll(map);
// (2) Comparator 按值排序
List<Map.Entry<Integer, Integer>> list = new ArrayList<>(map.entrySet());
list.sort(new Comparator<Map.Entry<Integer, Integer>>(){
    @Override
    public int compare(Map.Entry<Integer, Integer> o1, Map.Entry<Integer, Integer> o2){
        if (o1.getValue.equals(o2.getValue())){
            return o1.getKey().compareTo(o2.getKey());
        }
        return o1.getValue().compareTo(o2.getValue());
        // 重写排序规则,小于0表示升序,大于0表示降序
        // return o1.getValue()-o2.getValue(); 
    }
});
Iterator<Map.Entry<Integer, Integer>> it = list.iterator();
while(it.hasNext()){
    Map.Entry<Integer, Integer> item = it.next();
    System.out.println(item.getKey(), it.getValue());
}

// 10. 获取元素个数
int sizeMap = hashmap.size();
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

达分柒

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值