我正在通过rust book。在Strings一章中,很多例子使用to_string(),我的编译器版本(rustc 1.0.0-dev)给出了以下警告
strings.rs:3:23: 3:34 warning: use of unstable item, #[warn(unstable)] on by default
strings.rs:3 let mut s = "Hello".to_string();
代码:
fn main() {
let mut s = "Hello".to_string();
println!("{}", s);
}
我从this question了解到这是因为API可能会发生变化,但我想知道如果我想将字符串切片(str&)转换为字符串,我应该使用什么
答案 0 :(得分:3)
您可以解决这些事情,例如format!("Hello")
,但我现在真的不会打扰。