Drop ํŠธ๋ ˆ์ž‡

DropํŠธ๋ ˆ์ž‡์„ ๊ตฌํ˜„ํ•˜๋ฉด, ๊ทธ ๊ฐ’์ด ์Šค์ฝ”ํ”„ ๋ฐ–์œผ๋กœ ๋‚˜๊ฐˆ ๋•Œ ์‹คํ–‰๋  ์ฝ”๋“œ๋ฅผ ์ž‘์„ฑํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค:

struct Droppable {
    name: &'static str,
}

impl Drop for Droppable {
    fn drop(&mut self) {
        println!("Dropping {}", self.name);
    }
}

fn main() {
    let a = Droppable { name: "a" };
    {
        let b = Droppable { name: "b" };
        {
            let c = Droppable { name: "c" };
            let d = Droppable { name: "d" };
            println!("Exiting block B");
        }
        println!("Exiting block A");
    }
    drop(a);
    println!("Exiting main");
}
  • drop is called automatically, but it can be called manually like in this example.
  • If it was called manually, it wonโ€™t be called at the end of the scope for the second time.
  • Calling drop can be useful for objects that do some work on drop: releasing locks, closing files, etc.

๋…ผ์˜์ :

  • Drop::drop์€ ์™œ self๋ฅผ ์ธ์ž๋กœ ๋ฐ›์ง€ ์•Š์Šต๋‹ˆ๊นŒ?
    • ์งง์€ ๋Œ€๋‹ต: ๋งŒ์•ฝ ๊ทธ๋ ‡๊ฒŒ ๋œ๋‹ค๋ฉด std::mem::drop์ด ๋ธ”๋ก์˜ ๋์—์„œ ํ˜ธ์ถœ๋˜๊ณ , ๋‹ค์‹œ Drop::drop์„ ํ˜ธ์ถœํ•˜๊ฒŒ ๋˜์–ด, ์Šคํƒ ์˜ค๋ฒ„ํ”Œ๋กœ๊ฐ€ ๋ฐœ์ƒํ•ฉ๋‹ˆ๋‹ค!
  • drop(a)๋ฅผ a.drop()๋กœ ๋ณ€๊ฒฝํ•ด ๋ณด์‹œ๊ธฐ ๋ฐ”๋ž๋‹ˆ๋‹ค.