📜  rust 使用参数 i 并发执行 f.任务是独立的,不返回任何值. - Rust 代码示例

📅  最后修改于: 2022-03-11 14:49:25.946000             🧑  作者: Mango

代码示例1
let threads: Vec<_> = (0..1000).map(|i| {
    thread::spawn(move || f(i))
}).collect();

for thread in threads {
    thread.join();
}