本文簡要介紹rust語言中 alloc::boxed::Box.try_new_uninit_slice
的用法。
用法
pub fn try_new_uninit_slice( len: usize) -> Result<Box<[MaybeUninit<T>]>, AllocError>
用未初始化的內容構造一個新的盒裝切片。如果分配失敗則返回錯誤
例子
#![feature(allocator_api, new_uninit)]
let mut values = Box::<[u32]>::try_new_uninit_slice(3)?;
let values = unsafe {
// Deferred initialization:
values[0].as_mut_ptr().write(1);
values[1].as_mut_ptr().write(2);
values[2].as_mut_ptr().write(3);
values.assume_init()
};
assert_eq!(*values, [1, 2, 3]);
相關用法
- Rust Box.try_new_uninit_in用法及代碼示例
- Rust Box.try_new_uninit用法及代碼示例
- Rust Box.try_new_zeroed_slice用法及代碼示例
- Rust Box.try_new_in用法及代碼示例
- Rust Box.try_new_zeroed用法及代碼示例
- Rust Box.try_new_zeroed_in用法及代碼示例
- Rust Box.try_new用法及代碼示例
- Rust Box.downcast用法及代碼示例
- Rust Box.new_in用法及代碼示例
- Rust Box.new_zeroed_in用法及代碼示例
- Rust Box.into_raw用法及代碼示例
- Rust Box.from_raw_in用法及代碼示例
- Rust Box.new_zeroed_slice用法及代碼示例
- Rust Box.into_raw_with_allocator用法及代碼示例
- Rust Box.new_zeroed_slice_in用法及代碼示例
- Rust Box.leak用法及代碼示例
- Rust Box.assume_init用法及代碼示例
- Rust Box.new_uninit用法及代碼示例
- Rust Box.into_inner用法及代碼示例
- Rust Box.from_raw用法及代碼示例
- Rust Box.new_zeroed用法及代碼示例
- Rust Box.new用法及代碼示例
- Rust Box.new_uninit_slice_in用法及代碼示例
- Rust Box.new_uninit_in用法及代碼示例
- Rust Box.new_uninit_slice用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 alloc::boxed::Box.try_new_uninit_slice。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。