本文簡要介紹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 Vec.into_raw_parts用法及代碼示例
- Rust Vec.into_boxed_slice用法及代碼示例
- Rust Vec.insert用法及代碼示例
- Rust Vec.is_empty用法及代碼示例
- Rust Vec.drain用法及代碼示例
- Rust Vec.resize用法及代碼示例
- Rust Vec.swap_remove用法及代碼示例
- Rust Vec.reserve_exact用法及代碼示例
- Rust Vec.retain_mut用法及代碼示例
- Rust Vec.try_reserve_exact用法及代碼示例
- Rust Vec.new_in用法及代碼示例
- Rust Vec.retain用法及代碼示例
- Rust Vec.with_capacity用法及代碼示例
- Rust Vec.from_raw_parts用法及代碼示例
- Rust Vec.reserve用法及代碼示例
- Rust Vec.dedup_by用法及代碼示例
- Rust Vec.shrink_to_fit用法及代碼示例
- Rust Vec.as_mut_slice用法及代碼示例
- Rust Vec.dedup用法及代碼示例
- Rust Vec.set_len用法及代碼示例
- Rust Vec.as_ptr用法及代碼示例
- Rust Vec.capacity用法及代碼示例
- Rust Vec.leak用法及代碼示例
- Rust Vec.splice用法及代碼示例
- Rust Vec.split_off用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::vec::Vec.into_raw_parts_with_alloc。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。