本文簡要介紹rust語言中 std::vec::Vec.with_capacity_in
的用法。
用法
pub fn with_capacity_in(capacity: usize, alloc: A) -> Vec<T, A>
使用提供的分配器構造一個具有指定容量的新的空 Vec<T, A>
。
該向量將能夠準確地保存 capacity
元素而無需重新分配。如果capacity
為0,則向量不會分配。
需要注意的是,盡管返回的向量具有指定的容量,但向量的長度為零。有關長度和容量之間差異的說明,請參閱容量和重新分配。
Panics
如果新容量超過 isize::MAX
字節,則會出現Panics。
例子
#![feature(allocator_api)]
use std::alloc::System;
let mut vec = Vec::with_capacity_in(10, System);
// The vector contains no items, even though it has capacity for more
assert_eq!(vec.len(), 0);
assert_eq!(vec.capacity(), 10);
// These are all done without reallocating...
for i in 0..10 {
vec.push(i);
}
assert_eq!(vec.len(), 10);
assert_eq!(vec.capacity(), 10);
// ...but this may make the vector reallocate
vec.push(11);
assert_eq!(vec.len(), 11);
assert!(vec.capacity() >= 11);
相關用法
- Rust Vec.with_capacity用法及代碼示例
- Rust Vec.drain用法及代碼示例
- Rust Vec.into_raw_parts用法及代碼示例
- Rust Vec.resize用法及代碼示例
- Rust Vec.swap_remove用法及代碼示例
- Rust Vec.is_empty用法及代碼示例
- Rust Vec.reserve_exact用法及代碼示例
- Rust Vec.retain_mut用法及代碼示例
- Rust Vec.try_reserve_exact用法及代碼示例
- Rust Vec.new_in用法及代碼示例
- Rust Vec.insert用法及代碼示例
- Rust Vec.retain用法及代碼示例
- Rust Vec.from_raw_parts用法及代碼示例
- Rust Vec.into_boxed_slice用法及代碼示例
- 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.into_raw_parts_with_alloc用法及代碼示例
- Rust Vec.leak用法及代碼示例
- Rust Vec.splice用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::vec::Vec.with_capacity_in。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。