2

如何动态分配内存空间并获取指向 Zig 中结构列表的指针。

就像在 C 中一样:

struct Foo* my_array_of_foo = (struct Foo*) malloc(10*sizeof(Foo));
4

1 回答 1

5
const allocator: *std.mem.Allocator = std.heap.page_allocator; // this is not the best choice of allocator, see below.
const my_slice_of_foo: []Foo = try allocator.alloc(Foo, 10);
defer allocator.free(my_slice_of_foo);

这将分配一个长度为 10 的切片。稍后可以使用allocator.free(my_slice_of_foo)

在 zig 中,数组通常表示为包含指针和项目数 ( struct {ptr: [*]type, len: usize}) 的切片。分配器具有.create(type)为单个值分配空间并返回指针的函数,以及.alloc(type, count)分配连续数组并返回切片的函数。

std.heap.page_allocator不是此类任务的分配器的最佳选择。我建议使用通用分配器,它会为您捕获内存泄漏,更容易找到释放后使用错误,并更有效地使用内存:

pub fn main() !void {
    var gpa = std.heap.GeneralPurposeAllocator(.{}){};
    defer std.debug.assert(!gpa.deinit());
    const allocator = &gpa.allocator;
}

在测试中,最好使用测试分配器,它提供与通用分配器相同的安全特性,但由测试工具为您处理:

test "allocate stuff" {
    const allocator = std.testing.allocator;
}

创建竞技场分配器通常也很有用。.free()对 arena 分配器不执行任何操作,相反,当 arena 分配器被销毁时,放入 arena 分配器的所有内容都会立即释放。这可以使您的应用程序部分的内存管理更容易和更快。

const allocator = ... pick an allocator;
var arena_allocator = std.heap.ArenaAllocator.init(allocator);
defer arena_allocator.deinit();
const arena = &arena_allocator.allocator;
于 2020-05-05T08:02:43.247 回答