當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust Weak.into_raw用法及代碼示例


本文簡要介紹rust語言中 alloc::sync::Weak.into_raw 的用法。

用法

pub fn into_raw(self) -> *const T

使用 Weak<T> 並將其轉換為原始指針。

這會將弱指針轉換為原始指針,同時仍保留一個弱引用的所有權(此操作不會修改弱計數)。可以使用 from_raw 將其轉回 Weak<T>

訪問指針目標的限製與 as_ptr 相同。

例子

use std::sync::{Arc, Weak};

let strong = Arc::new("hello".to_owned());
let weak = Arc::downgrade(&strong);
let raw = weak.into_raw();

assert_eq!(1, Arc::weak_count(&strong));
assert_eq!("hello", unsafe { &*raw });

drop(unsafe { Weak::from_raw(raw) });
assert_eq!(0, Arc::weak_count(&strong));

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 alloc::sync::Weak.into_raw。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。