这是变量的一个例子:
name:= [] interface {} {“first”,“second”}
但是如何从字符串数组中动态地初始化它?
strs := []string{"first","second"} names := make([]interface{},len(strs)) for i,s := range strs { names[i] = s }
会是最简单的
name:= [] interface {} {“first”,“second”}
但是如何从字符串数组中动态地初始化它?
strs := []string{"first","second"} names := make([]interface{},len(strs)) for i,s := range strs { names[i] = s }
会是最简单的