问题描述

以下是变量的示例:

名称:= []界面{} {第一",第二"} 

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

How can it be initialized dynamically, from an array of strings?

推荐答案

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

会是最简单的

这篇关于在Golang中初始化接口数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!