Rust 程式設計視訊教程(進階)——012_1Drop trait 介紹

linghuyichong發表於2020-02-01

頭條地址:https://www.ixigua.com/i677586170644791348...
B站地址:https://www.bilibili.com/video/av81202308/

github地址:https://github.com/anonymousGiga/learn_rus...

1、Drop trait類似於其它語言中的解構函式,當值離開作用域時執行此函式的程式碼。
可以為任何型別提供Drop trait的實現(但是注意,這裡的型別需要用struct包含起來,用例子實現Drop for i32和Drop for String報錯)。

2、實現Drop trait
例子:

struct Dog {
    name: String,
}
//下面為Dog實現Drop trait
impl Drop for Dog {
    fn drop( &mut self ) {
        println!("Dog leave");
    }
}
fn main() {
    let a = Dog { name: String::from("wangcai")};
    let b = Dog { name: String::from("dahuang")};
    println!("At the end of main");
}
//從列印結果可以看出是離開作用域時呼叫了drop方法。
本作品採用《CC 協議》,轉載必須註明作者和本文連結

令狐一衝

相關文章