向 HashSet/HashMap 添加重复值是否会替换先前的值

Does adding a duplicate value to a HashSet/HashMap replace the previous value(向 HashSet/HashMap 添加重复值是否会替换先前的值)

本文介绍了向 HashSet/HashMap 添加重复值是否会替换先前的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请考虑以下代码:

HashSet hs = new HashSet();
hs.add("hi"); -- (1)
hs.add("hi"); -- (2)

hs.size() 将给出 1,因为 HashSet 不允许重复,因此只会存储一个元素.

hs.size() will give 1 as HashSet doesn't allow duplicates so only one element will be stored.

我想知道如果我们添加了重复元素,那么它是替换前一个元素还是根本不添加它?

I want to know if we add the duplicate element, then does it replace the previous element or it simply doesn't add it?

另外,对于同样的情况,使用HashMap会发生什么?

Also, what will happen usingHashMap for the same case?

推荐答案

HashMap,它将旧值替换为新值.

In the case of HashMap, it replaces the old value with the new one.

在 的情况下HashSet,该项没有插入.

In the case of HashSet, the item isn't inserted.

这篇关于向 HashSet/HashMap 添加重复值是否会替换先前的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:向 HashSet/HashMap 添加重复值是否会替换先前的值

基础教程推荐