我在 golang 中非常菜鸟,几天前才开始。
实际上,我正在尝试做一个简单的练习来习惯 golang 语法。
我在 main.go 中有这个:
package main
import(
"fmt"
// "stringa"
"main/survey"
)
func main() {
var questions = []survey.Question{
{
Label: "Questão 1",
Instructions : "Instrução",
Options : {
1 : "Op1",
2 : "Op2",
},
Answer: {
1 : "Op1",
},
},
}
fmt.Println(questions[0].Label)
}
我试着做一个简单的结构,但我知道。如果我使用接口,这个问题就解决了,但是如果在接下来的步骤中我需要在结构中使用映射......
PS:这是我使用的示例结构:
package survey
import(
// "fmt"
// "strings"
// "strconv"
)
// This is a simple Question in a survey code
type Question struct {
// This is a label for the quetsion
Label string
// This is a instructions and is not required
Instructions string
// this is a multiple options answer
Options map[int]string
// this is a answer correct response
Answer map[int]string
}
最后的问题是:
如何在结构内部的参数中使用 map 并将其写在声明中?