为了账号安全,请及时绑定邮箱和手机立即绑定

如何在golang中使用reflect创建具有给定名称(字符串)的数组

如何在golang中使用reflect创建具有给定名称(字符串)的数组

Go
慕雪6442864 2021-06-11 15:09:48
我想在 golang 中创建带有名称的数组,但是这里出现了一些错误,这是我的代码包 mainimport (    "fmt"    "reflect")type My struct{    Name string    Id int}func main() {    my := &My{}    myType := reflect.TypeOf(my)    fmt.Println(myType)    //v := reflect.New(myType).Elem().Interface()    // I want to make array  with My    //a := make([](myType.(type),0)  //can compile    //a := make([]v.(type),0)  ////can compile    fmt.Println(a)}
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 288 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信