在Go語言中,可以使用以下方法來給內嵌數組結構體賦值:
type MyStruct struct {
arr [3]int
}
func main() {
s := MyStruct{
arr: [3]int{1, 2, 3},
}
fmt.Println(s)
}
type MyStruct struct {
arr [3]int
}
func main() {
s := MyStruct{}
s.arr = [3]int{1, 2, 3}
fmt.Println(s)
}
請根據實際需求選擇適合的方法來賦值。