use std::thread; fn main() { let data = vec![42; 10]; let more_data = "Important data".to_string(); for _ in 1..=4 { thread::spawn(|| ...
確定! 回上一頁