本文简要介绍rust语言中 Function std::alloc::alloc_zeroed
的用法。
用法
pub unsafe fn alloc_zeroed(layout: Layout) -> *mut u8
使用全局分配器分配零初始化内存。
此函数将调用转发到使用 #[global_allocator]
属性注册的分配器的 GlobalAlloc::alloc_zeroed
方法(如果有的话),或者 std
板条箱的默认值。
当它和 Allocator
trait 变得稳定时,预计此函数将被弃用,取而代之的是 Global
类型的alloc_zeroed
方法。
安全性
例子
use std::alloc::{alloc_zeroed, dealloc, Layout};
unsafe {
let layout = Layout::new::<u16>();
let ptr = alloc_zeroed(layout);
assert_eq!(*(ptr as *mut u16), 0);
dealloc(ptr, layout);
}
相关用法
- Rust alloc用法及代码示例
- Rust align_of用法及代码示例
- Rust always_abort用法及代码示例
- Rust align_of_val用法及代码示例
- Rust align_of_val_raw用法及代码示例
- Rust assert_ne用法及代码示例
- Rust array.map用法及代码示例
- Rust assert_matches用法及代码示例
- Rust addr_of_mut用法及代码示例
- Rust array.split_array_ref用法及代码示例
- Rust array用法及代码示例
- Rust array.zip用法及代码示例
- Rust assert_eq用法及代码示例
- Rust array.split_array_mut用法及代码示例
- Rust available_parallelism用法及代码示例
- Rust addr_of用法及代码示例
- Rust abort用法及代码示例
- Rust array.each_mut用法及代码示例
- Rust assert用法及代码示例
- Rust array.each_ref用法及代码示例
- Rust args用法及代码示例
- Rust args_os用法及代码示例
- Rust UdpSocket.set_multicast_loop_v6用法及代码示例
- Rust i64.overflowing_add_unsigned用法及代码示例
- Rust Box.downcast用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Function std::alloc::alloc_zeroed。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。