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


Rust Box.from_raw_in用法及代碼示例


本文簡要介紹rust語言中 alloc::boxed::Box.from_raw_in 的用法。

用法

pub unsafe fn from_raw_in(raw: *mut T, alloc: A) -> Self

從給定分配器中的原始指針構造一個盒子。

調用此函數後,原始指針歸生成的 Box 所有。具體來說,Box 析構函數將調用T 的析構函數並釋放分配的內存。為了安全起見,必須根據 Box 使用的 memory layout 分配內存。

安全性

此函數不安全,因為使用不當可能會導致內存問題。例如,如果函數在同一個原始指針上調用兩次,則可能會出現 double-free。

例子

重新創建以前使用 Box::into_raw_with_allocator 轉換為原始指針的 Box

#![feature(allocator_api)]

use std::alloc::System;

let x = Box::new_in(5, System);
let (ptr, alloc) = Box::into_raw_with_allocator(x);
let x = unsafe { Box::from_raw_in(ptr, alloc) };

使用係統分配器從頭開始手動創建Box

#![feature(allocator_api, slice_ptr_get)]

use std::alloc::{Allocator, Layout, System};

unsafe {
    let ptr = System.allocate(Layout::new::<i32>())?.as_mut_ptr() 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_in(ptr, System);
}

相關用法


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