是否“放置”?覆盖现有值?

发布于 2024-12-01 10:41:31 字数 262 浏览 1 评论 0原文

哈希表新手,有一个简单的问题。由于某种原因,谷歌搜索没有给我一个直接的答案。假设我已经设置了一个 哈希表:

myHashtable.put(1,"bird");
myHashtable.put(2,"iguana");

并且我想将“bird”更改为“fish”(并保持索引不变)。我可以只做一个简单的put,还是需要删除该条目,或者什么?

New to hashtables with a simple question. For some reason googling hasn't gotten me a straight answer. Say I've got an <int,String> hashtable set up:

myHashtable.put(1,"bird");
myHashtable.put(2,"iguana");

and I want to change "bird" to "fish" (and leave the index the same). Can I just do a simple put, or do I need to delete the entry, or what?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笑咖 2024-12-08 10:41:31

是的。

如果到指定键的映射已存在,则旧值将被替换(并返回)。请参阅 Hashtable.put( )

对于多线程环境,我建议 < code>ConcurrentHashMap 或其他 ConcurrentMap 实现。尽管 Hashtable 是同步的,但现在有更复杂的实现可用于并发映射,例如 Guava 的 MapMakerCacheBuilder< /a>.

另请记住,Map 将具有类型参数 ,因为不支持原始类型参数。

Yes.

If a mapping to the specified key already exists, the old value will be replaced (and returned). See Hashtable.put().

For multi-threaded environment, I'd recommend ConcurrentHashMap or another ConcurrentMap implementation. Though Hashtable is synchronized, there are more sophisticated implementations available now for concurrent mapping, such as Guava's MapMaker and CacheBuilder.

Also keep in mind the Map is going to have the type parameters <Integer, String> since primitive type parameters aren't supported.

北斗星光 2024-12-08 10:41:31

嗯,只需添加一行
myHashtable.put(1,"fish");
要了解发生了什么令人惊奇的事情,

请参阅此链接:http://docs.oracle.com/javase/6/docs/api/java/util/Hashtable.html#put(K, V)

Returns:
the previous value of the specified key in this hashtable, or null if it did not have one

hmmm ,just need add a line
myHashtable.put(1,"fish");
to see what's amazing happens

see this links:http://docs.oracle.com/javase/6/docs/api/java/util/Hashtable.html#put(K, V)

Returns:
the previous value of the specified key in this hashtable, or null if it did not have one
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文