dro80463 2018-07-29 12:38
浏览 778
已采纳

Golang结构体中的字符串数组

Im using the following struct

type Str struct {
    Info    string
    Command string
}

And to fill data inside of it Im doing the following which works.

    return []Str{
        {"info from source",
            "install && run"},
    }

Now I need to change the command to array

type Str struct {
    Info    string
    Command []string
}

And provide each of the commands("install" and "run") in new entry in the array, how can I do that

when I try with

return []Str{
    {"info from source",string[]{
        {"install},  {"run"}},
}

I got erorr of missing type literal, any idea what Im doing wrong

  • 写回答

1条回答 默认 最新

  • dsfb20227 2018-07-29 12:41
    关注

    The correct syntax is the following:

    return []Str{
        {"info from source", []string{"install", "run"}},
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#极限编程#的问题,请各位专家解答!
  • ¥20 win11账户锁定时间设为0无法登录
  • ¥45 C#学生成绩管理系统
  • ¥15 VB.NET2022如何生成发布成exe文件
  • ¥30 matlab appdesigner私有函数嵌套整合
  • ¥15 vb6.0使用jmail接收smtp邮件并另存附件到D盘
  • ¥30 vb net 使用 sendMessage 如何输入鼠标坐标
  • ¥15 关于freesurfer使用freeview可视化的问题
  • ¥100 谁能在荣耀自带系统MagicOS版本下,隐藏手机桌面图标?
  • ¥15 求SC-LIWC词典!