Golang | for range 遍歷數組 *小案例

func main(){ // 演示for-range 遍歷數組 heroes := [...]string{"拉克絲", "凱特琳娜", "婆娑"} for i, v := range heroes { fmt.Printf("i=%v v=%v \n", i, v) // 或者 換一個方式 //fmt.Printf("heroes[%d]=%v \n", i, heroes
相關文章
相關標籤/搜索