「Rust筆記」修訂間的差異
跳至導覽
跳至搜尋
Tankianting(討論 | 貢獻) |
Tankianting(討論 | 貢獻) |
||
行 20: | 行 20: | ||
==變數== | ==變數== | ||
# [https://www.educative.io/edpresso/how-to-use-references-in-rust 使用參照的方法] | # [https://www.educative.io/edpresso/how-to-use-references-in-rust 使用參照的方法] | ||
#: <code>foo (x : &mut i64){...}</code> | |||
# 使用連結字串:https://stackoverflow.com/questions/30154541/how-do-i-concatenate-strings | |||
#: <code>let concat_str = format!("{}{}", str1, str2);</code> | |||
[[category:資訊]] | [[category:資訊]] |
於 2022年3月6日 (日) 00:28 的修訂
型別
函數
struct
struct Aminal { species: String, name: String, weight: u64, }
資料結構
- 樹的使用函式庫 Apache License 2.0/MIT
函數
- 得到 UTF-8 字串長度的方法:UnicodeSegmentation::graphemes(參見:Stack Overflow)
- 匯入外部函式庫
變數
- 使用參照的方法
foo (x : &mut i64){...}
- 使用連結字串:https://stackoverflow.com/questions/30154541/how-do-i-concatenate-strings
let concat_str = format!("{}{}", str1, str2);