t_wの輪郭

Feedlyでフォローするボタン
作成HashMapHashMap::new()HashMap<K, V>

HashMapの作成

2022/2/19 18:00:00
fn main() {
    use std::collections::HashMap;

    //let mut scores1 = HashMap::new();       //作成後にinsertがないとエラーになる
    let mut scores2:HashMap<String, u32> = HashMap::new();
}
あれ