初始化Golang中的接口数组

前端之家收集整理的这篇文章主要介绍了初始化Golang中的接口数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是变量的一个例子:

name:= [] interface {} {“first”,“second”}

但是如何从字符串数组中动态地初始化它?

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

会是最简单的

原文链接:https://www.f2er.com/go/186976.html

猜你在找的Go相关文章