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


Rust Vec.into_raw_parts_with_alloc用法及代碼示例


本文簡要介紹rust語言中 std::vec::Vec.into_raw_parts_with_alloc 的用法。

用法

pub fn into_raw_parts_with_alloc(self) -> (*mut T, usize, usize, A)

Vec<T> 分解為其原始組件。

返回指向基礎數據的原始指針、向量的長度(以元素為單位)、數據的分配容量(以元素為單位)和分配器。這些參數與 from_raw_parts_in 的參數順序相同。

調用此函數後,調用者負責之前由 Vec 管理的內存。這樣做的唯一方法是使用 from_raw_parts_in 函數將原始指針、長度和容量轉換回Vec,從而允許析構函數執行清理。

例子

#![feature(allocator_api, vec_into_raw_parts)]

use std::alloc::System;

let mut v: Vec<i32, System> = Vec::new_in(System);
v.push(-1);
v.push(0);
v.push(1);

let (ptr, len, cap, alloc) = v.into_raw_parts_with_alloc();

let rebuilt = unsafe {
    // We can now make changes to the components, such as
    // transmuting the raw pointer to a compatible type.
    let ptr = ptr as *mut u32;

    Vec::from_raw_parts_in(ptr, len, cap, alloc)
};
assert_eq!(rebuilt, [4294967295, 0, 1]);

相關用法


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