t_wの輪郭

RustBox参照外し型強制

あれ

2022/3/2 11:20:00
fn hello(text:&str) {
    println!("Hello, {}!", &text);
}
let m = Box::new(String::from("Rust"));
hello(&m);    //Hello, Rust!
あれ