t_wの輪郭

Feedlyでフォローするボタン

HashMapの値を変更

2022/2/19 20:17:00

insertを2回使う

hashmap.insert(String::from("Blue"), 10);
hashmap.insert(String::from("Blue"), 50);
println!("{:?}", hashmap)       // {"Blue": 50}

もしくはget_mutを使う

let key = String::from("Blue");

if let Some(v) = hashmap.get_mut(&key) {
    *v=100;
}

if let Some(v) = hashmap.get(&key) {
    println!("{}", v);      //100
}