本文简要介绍rust语言中 core::ptr::NonNull.dangling
的用法。
用法
pub const fn dangling() -> Self
创建一个新的 NonNull
,它是悬空的,但 well-aligned。
这对于初始化延迟分配的类型很有用,例如 Vec::new
。
请注意,指针值可能表示指向 T
的有效指针,这意味着不能将其用作 “not yet initialized” 标记值。延迟分配的类型必须通过其他方式跟踪初始化。
例子
use std::ptr::NonNull;
let ptr = NonNull::<u32>::dangling();
// Important: don't try to access the value of `ptr` without
// initializing it first! The pointer is not null but isn't valid either!
相关用法
- Rust NonNull.dangling用法及代码示例
- Rust NonNull.len用法及代码示例
- Rust NonNull.as_uninit_slice_mut用法及代码示例
- Rust NonNull.slice_from_raw_parts用法及代码示例
- Rust NonNull.as_mut_ptr用法及代码示例
- Rust NonNull.as_mut用法及代码示例
- Rust NonNull.cast用法及代码示例
- Rust NonNull.as_ptr用法及代码示例
- Rust NonNull.new_unchecked用法及代码示例
- Rust NonNull.get_unchecked_mut用法及代码示例
- Rust NonNull.new用法及代码示例
- Rust NonNull.as_non_null_ptr用法及代码示例
- Rust NonNull.as_ref用法及代码示例
- Rust NonZeroU128.checked_pow用法及代码示例
- Rust NonZeroUsize.checked_next_power_of_two用法及代码示例
- Rust NonZeroI128.saturating_pow用法及代码示例
- Rust NonZeroI64.wrapping_abs用法及代码示例
- Rust NonZeroU64.checked_mul用法及代码示例
- Rust NonZeroU16.saturating_pow用法及代码示例
- Rust NonZeroU8.checked_add用法及代码示例
- Rust NonZeroUsize.checked_pow用法及代码示例
- Rust NonZeroU8.unchecked_add用法及代码示例
- Rust NonZeroUsize.leading_zeros用法及代码示例
- Rust NonZeroI32.trailing_zeros用法及代码示例
- Rust NonZeroI8.saturating_pow用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 core::ptr::NonNull.dangling。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。