「Rust筆記」修訂間的差異

出自Tan Kian-ting的維基
跳至導覽 跳至搜尋
行 9: 行 9:
}
}
</pre>
</pre>
===資料結構===
* [https://oooutlk.github.io/trees/crud.html 樹的使用函式庫] Apache License 2.0/MIT


==函數==
==函數==

於 2022年3月5日 (六) 23:46 的修訂

型別

函數

struct

struct Aminal {
    species: String,
    name: String,
    weight: u64,
}


資料結構

函數

  1. 得到 UTF-8 字串長度的方法:UnicodeSegmentation::graphemes(參見:Stack Overflow

變數

  1. 使用參照的方法
foo (x : &mut i64){...}