golang學習筆記之range

range遍歷是複製 range遍歷數組是複製數組:web a := []int{1,2,3,4,5} for _,x := range a{ x += 3 } for _,x := range a{ fmt.Println(x) } 輸出結果是: 1 2 3 4 5 是複製了數組的元素,固然,若是你想修改數組的元素可使用數組 f
相關文章
相關標籤/搜索