gpt4 book ai didi

go - 如何在 Go 中实现可调整大小的数组

转载 作者:IT老高 更新时间:2023-10-28 12:58:35 26 4
gpt4 key购买 nike

我来自 C++ 背景,并且习惯于将 std::vector 类用于此类事情。假设我想要一个动态数组:

type a struct {
b int
c string
}

这样做的标准方法是什么?

一个片段会非常有用

最佳答案

使用 append() 内置

例子:

type mytype struct {
a, b int
}

func main() {
a := []mytype{mytype{1, 2}, mytype{3, 4}}
a = append(a, mytype{5, 6})
}

请参阅 spec有关附加的更多信息。

关于go - 如何在 Go 中实现可调整大小的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3387273/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com