当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust Weak.as_ptr用法及代码示例


本文简要介绍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-lang.org大神的英文原创作品 alloc::sync::Weak.as_ptr。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。