在Rust中使用malloc()和free()进行内存管理
所有者 Edwin。
#1231 在 嵌入式开发
3KB
#![no_std] #![feature(default_alloc_error_handler)] use mallocator::Mallocator; #[global_allocator] static A: Mallocator = Mallocator; fn my_fn_that_requires_heap() { let v = vec![1, 2, 3]; }