本文简要介绍rust语言中 std::thread::JoinHandle.join
的用法。
用法
pub fn join(self) -> Result<T>
等待相关线程完成。
如果相关线程已经完成,此函数将立即返回。
就 atomic memory orderings 而言,关联线程的完成与该函数的返回同步。换句话说,该线程 happen
before 执行的所有操作都是 join
返回后发生的操作。
如果关联的线程出现紧急情况,则返回 Err
并提供给 panic!
的参数。
Panics
如果线程尝试加入自身,则此函数可能会在某些平台上出现紧急情况,否则可能会在加入线程时造成死锁。
例子
use std::thread;
let builder = thread::Builder::new();
let join_handle: thread::JoinHandle<_> = builder.spawn(|| {
// some work here
}).unwrap();
join_handle.join().expect("Couldn't join on the associated thread");
相关用法
- Rust JoinHandle.thread用法及代码示例
- Rust JoinHandle用法及代码示例
- Rust UdpSocket.set_multicast_loop_v6用法及代码示例
- Rust i64.overflowing_add_unsigned用法及代码示例
- Rust Box.downcast用法及代码示例
- Rust BTreeMap.last_key_value用法及代码示例
- Rust str.make_ascii_uppercase用法及代码示例
- Rust u128.checked_pow用法及代码示例
- Rust usize.wrapping_mul用法及代码示例
- Rust AtomicU8.fetch_sub用法及代码示例
- Rust PanicInfo.payload用法及代码示例
- Rust MaybeUninit.assume_init_mut用法及代码示例
- Rust String.try_reserve用法及代码示例
- Rust Mutex.new用法及代码示例
- Rust f32.exp用法及代码示例
- Rust Result.unwrap_or_else用法及代码示例
- Rust slice.sort_unstable_by_key用法及代码示例
- Rust Formatter.precision用法及代码示例
- Rust i128.log2用法及代码示例
- Rust OsStr.to_ascii_uppercase用法及代码示例
- Rust f32.hypot用法及代码示例
- Rust RefCell.try_borrow_unguarded用法及代码示例
- Rust i16.log10用法及代码示例
- Rust LowerExp用法及代码示例
- Rust HashSet.get_or_insert_with用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::thread::JoinHandle.join。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。