gpt4 book ai didi

go - 在 Golang 中初始化接口(interface)数组

转载 作者:IT老高 更新时间:2023-10-28 13:02:05 44 4
gpt4 key购买 nike

这里是一个变量的例子:

names := []interface{}{"first", "second"}

如何从字符串数组动态初始化?

最佳答案

strs := []string{"first", "second"}
names := make([]interface{}, len(strs))
for i, s := range strs {
names[i] = s
}

应该是最简单的

关于go - 在 Golang 中初始化接口(interface)数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20954030/

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