「Rust筆記」修訂間的差異

出自Tan Kian-ting的維基
跳至導覽 跳至搜尋
行 15: 行 15:
==變數==
==變數==
# [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>




[[category:資訊]]
[[category:資訊]]

於 2022年3月5日 (六) 22:39 的修訂

型別

函數

struct

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

函數

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

變數

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