本文簡要介紹rust語言中 alloc::boxed::Box.from_raw
的用法。
用法
pub unsafe fn from_raw(raw: *mut T) -> Self
從原始指針構造一個框。
調用此函數後,原始指針歸生成的 Box
所有。具體來說,Box
析構函數將調用T
的析構函數並釋放分配的內存。為了安全起見,必須根據 Box
使用的 memory layout 分配內存。
安全性
此函數不安全,因為使用不當可能會導致內存問題。例如,如果函數在同一個原始指針上調用兩次,則可能會出現 double-free。
安全條件在 memory layout 部分中說明。
例子
重新創建以前使用 Box::into_raw
轉換為原始指針的 Box
:
let x = Box::new(5);
let ptr = Box::into_raw(x);
let x = unsafe { Box::from_raw(ptr) };
使用全局分配器從頭開始手動創建Box
:
use std::alloc::{alloc, Layout};
unsafe {
let ptr = alloc(Layout::new::<i32>()) as *mut i32;
// In general .write is required to avoid attempting to destruct
// the (uninitialized) previous contents of `ptr`, though for this
// simple example `*ptr = 5` would have worked as well.
ptr.write(5);
let x = Box::from_raw(ptr);
}
相關用法
- Rust Box.from_raw_in用法及代碼示例
- Rust Box.downcast用法及代碼示例
- Rust Box.try_new_uninit_in用法及代碼示例
- Rust Box.new_in用法及代碼示例
- Rust Box.new_zeroed_in用法及代碼示例
- Rust Box.try_new_zeroed_slice用法及代碼示例
- Rust Box.try_new_in用法及代碼示例
- Rust Box.try_new_zeroed用法及代碼示例
- Rust Box.into_raw用法及代碼示例
- Rust Box.try_new_zeroed_in用法及代碼示例
- Rust Box.new_zeroed_slice用法及代碼示例
- Rust Box.into_raw_with_allocator用法及代碼示例
- Rust Box.new_zeroed_slice_in用法及代碼示例
- Rust Box.try_new_uninit用法及代碼示例
- Rust Box.leak用法及代碼示例
- Rust Box.assume_init用法及代碼示例
- Rust Box.new_uninit用法及代碼示例
- Rust Box.into_inner用法及代碼示例
- Rust Box.new_zeroed用法及代碼示例
- Rust Box.new用法及代碼示例
- Rust Box.new_uninit_slice_in用法及代碼示例
- Rust Box.new_uninit_in用法及代碼示例
- Rust Box.try_new_uninit_slice用法及代碼示例
- Rust Box.try_new用法及代碼示例
- Rust Box.new_uninit_slice用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 alloc::boxed::Box.from_raw。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。