trpl-zh-cn/listings/ch16-fearless-concurrency/no-listing-01-join-too-early/src/main.rs
2022-02-06 16:43:51 +08:00

19 lines
419 B
Rust
Executable File

use std::thread;
use std::time::Duration;
fn main() {
let handle = thread::spawn(|| {
for i in 1..10 {
println!("hi number {} from the spawned thread!", i);
thread::sleep(Duration::from_millis(1));
}
});
handle.join().unwrap();
for i in 1..5 {
println!("hi number {} from the main thread!", i);
thread::sleep(Duration::from_millis(1));
}
}