范围可对各种数据结构中的元素进行迭代。下面来看看如何使用范围在前面已经学习过的的一些数据结构中的使用。
所有的示例代码,都放在
F:\worksp\golang
目录下。安装Go编程环境请参考:/tutorial/detail-5562.html
这里使用范围来对切片中的数字求和。数组也是可以这样使用的。
数组和切片上的范围提供每个条目的索引和值。上面不需要索引,所以忽略它与空白标识符_
。 有时候实际上想要索引。
范围在映射上迭代键/值对。
范围也可以遍历映射中的键。
字符串上的范围在Unicode
代码点上迭代。第一个值是符文的起始字节索引,第二个是符文本身。
range.go
的完整代码如下所示 -
package main import "fmt" func main() { // Here we use `range` to sum the numbers in a slice. // Arrays work like this too. nums := []int{2, 3, 4} sum := 0 for _, num := range nums { sum += num } fmt.Println("sum:", sum) // `range` on arrays and slices provides both the // index and value for each entry. Above we didn't // need the index, so we ignored it with the // blank identifier `_`. Sometimes we actually want // the indexes though. for i, num := range nums { if num == 3 { fmt.Println("index:", i) } } // `range` on map iterates over key/value pairs. kvs := map[string]string{"a": "apple", "b": "banana"} for k, v := range kvs { fmt.Printf("%s -> %s\n", k, v) } // `range` can also iterate over just the keys of a map. for k := range kvs { fmt.Println("key:", k) } // `range` on strings iterates over Unicode code // points. The first value is the starting byte index // of the `rune` and the second the `rune` itself. for i, c := range "go" { fmt.Println(i, c) } }
执行上面代码,将得到以下输出结果 -
F:\worksp\golang>go run range.go sum: 9 index: 1 a -> apple b -> banana key: a key: b 111