Golang结构体中的字符串数组

时间:2018-07-29 12:38:49

标签: go

我使用以下结构

type Str struct {
    Info    string
    Command string
}

然后在其中填充数据,我将执行以下工作。

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

现在我需要将命令更改为array

type Str struct {
    Info    string
    Command []string
}

并在数组的新条目中提供每个命令(“安装”和“运行”),我该怎么做

当我尝试

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

我错失了类型文字,任何想法我做错了

1 个答案:

答案 0 :(得分:3)

正确的语法如下:

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