kumuのつぶやき

フロントエンド勉強中の学生のただつぶやき

2020-12-02から1日間の記事一覧

Rust 文字列

文字列型 String型 &str型 // ヒープに割り当てる let a = String::from("test"); let a = "test".to_string(); let a: String = "test".into(); // read only memory上に割り当てられた文字列への参照 let b: &'static str = "test"; // &str let b = "test…