📌  相关文章
📜  go arrays - Go 编程语言代码示例

📅  最后修改于: 2022-03-11 14:45:01.958000             🧑  作者: Mango

代码示例2
var a [10]int // declare an int array with length 10. Array length is part of the type!
a[3] = 42     // set elements
i := a[3]     // read elements

// declare and initialize
var a = [2]int{1, 2}
a := [2]int{1, 2} //shorthand
a := [...]int{1, 2} // elipsis -> Compiler figures out array length