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


Rust Box.into_raw_with_allocator用法及代碼示例


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

用法

pub fn into_raw_with_allocator(b: Self) -> (*mut T, A)

使用 Box ,返回一個包裝的原始指針和分配器。

指針將正確對齊且非空。

調用此函數後,調用者負責先前由 Box 管理的內存。特別是,調用者應正確銷毀 T 並釋放內存,同時考慮到 Box 使用的 memory layout 。最簡單的方法是使用 Box::from_raw_in 函數將原始指針轉換回 Box,從而允許 Box 析構函數執行清理。

注意:這是一個關聯函數,這意味著您必須將其稱為 Box::into_raw_with_allocator(b) 而不是 b.into_raw_with_allocator() 。這樣就不會與內部類型上的方法發生衝突。

例子

使用 Box::from_raw_in 將原始指針轉換回 Box 以進行自動清理:

#![feature(allocator_api)]

use std::alloc::System;

let x = Box::new_in(String::from("Hello"), System);
let (ptr, alloc) = Box::into_raw_with_allocator(x);
let x = unsafe { Box::from_raw_in(ptr, alloc) };

通過顯式運行析構函數並釋放內存進行手動清理:

#![feature(allocator_api)]

use std::alloc::{Allocator, Layout, System};
use std::ptr::{self, NonNull};

let x = Box::new_in(String::from("Hello"), System);
let (ptr, alloc) = Box::into_raw_with_allocator(x);
unsafe {
    ptr::drop_in_place(ptr);
    let non_null = NonNull::new_unchecked(ptr);
    alloc.deallocate(non_null.cast(), Layout::new::<String>());
}

相關用法


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