當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust HashMap.insert用法及代碼示例


本文簡要介紹rust語言中 std::collections::hash_map::HashMap.insert 的用法。

用法

pub fn insert(&mut self, k: K, v: V) -> Option<V>

將鍵值對插入到映射中。

如果映射不存在此鍵,則返回 None

如果Map確實存在此鍵,則更新該值,並返回舊值。但 key 並未更新;這對於可能是==但不完全相同的類型很重要。有關更多信息,請參閱module-level documentation

例子

use std::collections::HashMap;

let mut map = HashMap::new();
assert_eq!(map.insert(37, "a"), None);
assert_eq!(map.is_empty(), false);

map.insert(37, "b");
assert_eq!(map.insert(37, "c"), Some("b"));
assert_eq!(map[&37], "c");

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::collections::hash_map::HashMap.insert。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。