執行緒

Rust 執行緒的運作方式與其他語言類似:

use std::thread;
use std::time::Duration;

fn main() {
    thread::spawn(|| {
        for i in 1..10 {
            println!("Count in thread: {i}!");
            thread::sleep(Duration::from_millis(5));
        }
    });

    for i in 1..5 {
        println!("Main thread: {i}");
        thread::sleep(Duration::from_millis(5));
    }
}
  • 執行緒都是 daemon 執行緒,主執行緒不會等待這類執行緒完成運作。
  • 執行緒恐慌均為各自獨立,並非彼此相關。
    • 如果恐慌附帶酬載,可使用 downcast_ref 解除封裝。

重要須知:

  • 請注意,執行緒會在達到 10 之前停止運作,因為主執行緒不會 等待其完成運作。

  • 請依序使用 let handle = thread::spawn(...)handle.join(),等待 執行緒完成運作。

  • 在執行緒中觸發恐慌,請注意,這不會影響 main

  • 使用 handle.join()Result 傳回值,取得恐慌酬載的 存取權。這個階段是提起 Any 的好時機。