菜鸟问题:
我想改变数组列表中存在的值。我最初尝试只抓取索引项并直接更改其字段值。
const Foo = struct {
const Self = @This();
foo: u8,
};
pub fn main() anyerror!void {
const foo = Foo {
.foo = 1,
};
const allocator = std.heap.page_allocator;
var arr = ArrayList(Foo).init(allocator);
arr.append(foo) catch unreachable;
var a = arr.items[0];
std.debug.warn("a: {}", .{a});
a.foo = 2;
std.debug.warn("a: {}", .{a});
std.debug.warn("arr.items[0]: {}", .{arr.items[0]});
//In order to update the memory in [0] I have to reassign it to a.
//arr.items[0] = a;
}
然而,结果出乎我的意料:
a: Foo{ .foo = 1 }
a: Foo{ .foo = 2 }
arr.items[0]: Foo{ .foo = 1 }
我原以为arr.items[0]
现在等于Foo{ .foo = 2 }
.
这可能是因为我误解了切片。
不a
指向与 ? 相同的内存arr.items[0]
?
是否arr.items[0]
返回指向复制项目的指针?