Rust中的哈希Map

严谨!

fn main() {
    use std::collections::HashMap;

    let mut scores = HashMap::new();

    scores.insert(String::from("Blue"), 10);
    scores.insert(String::from("Yellow"), 50);

    for (key, value) in &scores {
    println!("{}: {}", key, value);
    }
}

Rust中的哈希Map

上一篇:字符串和常用数据结构


下一篇:Cefsharp 设置代理方法