Rust教學
Rust下載和安裝
Rust簡介
Rust Hello World
Rust的特點
Rust註釋
Rust開發環境安裝
Rust文檔
Rust第一個程序
Rust格式化打印
Rust調試
Rust顯示
測試用例:列表
Rust格式化
Rust原語
Rust常量和運算符
Rust元組
Rust數組和切片
Rust自定義類型
Rust結構
Rust可視性
Rust枚舉
Rust常量
Rust變量綁定
Rust變量綁定-可變性
Rust變量綁定-範圍和陰影
Rust變量綁定-聲明
Rust類型轉換
Rust類型轉換 - 字面量
Rust類型轉換-推導
Rust類型轉換 - 別名
Rust表達式
Rust if/else語句
Rust循環
Rust嵌套和標籤
Rust while循環
Rust for和範圍
Rust匹配/match
Rust匹配析構元組
Rust解構枚舉
Rust指針和引用
Rust解構結構
Rust Guards
Rust綁定
Rust if let
Rust while let
Rust函數
Rust方法
Rust閉包
Rust捕捉
Rust作爲輸入參數
Rust匿名類型
Rust輸入函數
Rust作爲輸出參數
Rust結構體更新語法
使用Struct
更新語法從其他實例創建新實例。
當新實例使用舊實例的大部分值時,可以使用struct update
語法。考慮兩名員工employee1
和employee2
。
- 首先,創建
Employee
結構體的實例employee1
:
let employee1 = Employee{
employee_name : String::from("Maxsu"),
employee_id: 12,
employee_profile : String::from("IT工程師"),
active : true,
};
- 其次,創建
employee2
的實例。employee2
實例的某些值與employee1
相同。 有兩種方法可以聲明employee2
實例。
第一種方法是在沒有語法更新的情況下聲明employee2
實例。
let employee2 = Employee{
employee_name : String::from("Maxsu"),
employee_id: 11,
employee_profile : employee1.employee_profile,
active : employee1.active,
};
第二種方法是使用語法更新聲明employee2
實例。
let employee2 = Employee{
employee_name : String::from("Yiibai"),
employee_id: 11,
..employee1
};
語法..
指定其餘字段未顯式設置,並且它們與給定實例中的字段具有相同的值。
下面來看一個結構的簡單示例:
struct Triangle
{
base:f64,
height:f64,
}
fn main()
{
let triangle= Triangle{base:20.0,height:30.0};
print!("Area of a right angled triangle is {}", area(&triangle));
}
fn area(t:&Triangle)->f64
{
0.5 * t.base * t.height
}
執行上面示例代碼,得到以下結果 -
Area of a right angled triangle is 300
在上面的例子中,創建了三角形(Triangle
)的結構體,它包含兩個變量,即直角三角形的底邊和高度。三角形(Triangle
)的實例是在main()
方法中創建的。