一般提到Rust字符串我们指的是两个类型:String(字符串类型)&str(字符串切片)字符串创建// 方法1 let s1 = String::from("hello"); // 方法2 let s1 = "hello".to_string();使用push_str更新字符串let mut s1 = String::from("foo&...