本文简要介绍rust语言中 alloc::sync::Weak.as_ptr
的用法。
用法
pub fn as_ptr(&self) -> *const T
返回指向此 Weak<T>
指向的对象 T
的原始指针。
只有存在一些强引用时,指针才有效。指针可能悬空、未对齐或什至 null
否则。
例子
use std::sync::Arc;
use std::ptr;
let strong = Arc::new("hello".to_owned());
let weak = Arc::downgrade(&strong);
// Both point to the same object
assert!(ptr::eq(&*strong, weak.as_ptr()));
// The strong here keeps it alive, so we can still access the object.
assert_eq!("hello", unsafe { &*weak.as_ptr() });
drop(strong);
// But not any more. We can do weak.as_ptr(), but accessing the pointer would lead to
// undefined behaviour.
// assert_eq!("hello", unsafe { &*weak.as_ptr() });
相关用法
- Rust Weak.new用法及代码示例
- Rust Weak.from_raw用法及代码示例
- Rust Weak.into_raw用法及代码示例
- Rust Weak.upgrade用法及代码示例
- Rust Weak.ptr_eq用法及代码示例
- Rust Wrapping.is_negative用法及代码示例
- Rust Wrapping.from_le用法及代码示例
- Rust Wrapping.reverse_bits用法及代码示例
- Rust Wrapping.to_be用法及代码示例
- Rust Wrapping.next_power_of_two用法及代码示例
- Rust Write.write_all用法及代码示例
- Rust Write.write_str用法及代码示例
- Rust Windows用法及代码示例
- Rust Write用法及代码示例
- Rust Write.write_vectored用法及代码示例
- Rust Wrapping.is_power_of_two用法及代码示例
- Rust Wrapping.abs用法及代码示例
- Rust WriterPanicked用法及代码示例
- Rust Write.by_ref用法及代码示例
- Rust Wrapping.rotate_right用法及代码示例
- Rust Wake用法及代码示例
- Rust Wrapping.leading_zeros用法及代码示例
- Rust Write.flush用法及代码示例
- Rust Wrapping.signum用法及代码示例
- Rust Write.write_all_vectored用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 alloc::sync::Weak.as_ptr。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。