本文简要介绍rust语言中 std::vec::Vec.leak
的用法。
用法
pub fn leak<'a>(self) -> &'a mut [T] where A: 'a,
消耗并泄漏 Vec
,返回对内容的可变引用 &'a mut [T]
。请注意,类型 T
必须比选择的生命周期长 'a
。如果类型只有静态引用,或者根本没有,那么可以选择 'static
。
从 Rust 1.57 开始,此方法不会重新分配或收缩 Vec
,因此泄漏的分配可能包括不属于返回切片的未使用容量。
此函数主要用于在程序剩余生命周期中存在的数据。删除返回的引用将导致内存泄漏。
例子
简单用法:
let x = vec![1, 2, 3];
let static_ref: &'static mut [usize] = x.leak();
static_ref[0] += 1;
assert_eq!(static_ref, &[2, 2, 3]);
相关用法
- Rust Vec.len用法及代码示例
- 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.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.splice用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::vec::Vec.leak。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。