本文简要介绍rust语言中 std::vec::Vec.try_reserve_exact
的用法。
用法
pub fn try_reserve_exact( &mut self, additional: usize) -> Result<(), TryReserveError>
尝试为要插入给定 Vec<T>
的 additional
元素保留最小容量。调用 try_reserve_exact
后,如果返回 Ok(())
,容量将大于或等于 self.len() + additional
。如果容量已经足够,则什么也不做。
请注意,分配器可能会为集合提供比其请求更多的空间。因此,不能依赖容量精确到最小。如果预计将来会插入,则首选 reserve
。
错误
如果容量溢出,或者分配器报告失败,则返回错误。
例子
use std::collections::TryReserveError;
fn process_data(data: &[u32]) -> Result<Vec<u32>, TryReserveError> {
let mut output = Vec::new();
// Pre-reserve the memory, exiting if we can't
output.try_reserve_exact(data.len())?;
// Now we know this can't OOM in the middle of our complex work
output.extend(data.iter().map(|&val| {
val * 2 + 5 // very complicated
}));
Ok(output)
}
相关用法
- Rust Vec.try_reserve用法及代码示例
- Rust Vec.truncate用法及代码示例
- 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.new_in用法及代码示例
- Rust Vec.insert用法及代码示例
- Rust Vec.retain用法及代码示例
- Rust Vec.with_capacity用法及代码示例
- 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-lang.org大神的英文原创作品 std::vec::Vec.try_reserve_exact。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。