Go 语言循环语句

如果想要重复执行某些语句,Go 语言中您只有 for 结构可以使用。不要小看它,这个 for 结构比其它语言中的更为灵活。本章节我们要了解的就是循环语句的各种结构,以及如何跳出循环:

注意:其它许多语言中也没有发现和 do while 完全对等的 for 结构,可能是因为这种需求并不是那么强烈。

for-range结构

这是 Go 特有的一种的迭代结构,您会发现它在许多情况下都非常有用。它可以迭代任何一个集合(包括数组map)。语法上很类似其它语言中 foreach 语句,不同的是,for-range可以获得每次迭代所对应的索引。

一般形式为:

  1. for ix, val := range coll { }。

要注意的是,val 始终为集合中对应索引的值拷贝,因此它一般只具有只读性质,对它所做的任何修改都不会影响到集合中原有的值(如果 val 为指针,则会产生指针的拷贝,可以修改集合中的原值)。一个字符串是 Unicode 编码的字符集合,因此您也可以用它迭代字符串:

  1. for pos, char := range str {
  2. ...
  3. }

每个 rune 字符和索引在 for-range 循环中是一一对应的。它能够自动根据 UTF-8 规则识别 Unicode 编码的字符。

示例:

  1. package main
  2. import "fmt"
  3. func main() {
  4. str := "Go is a beautiful language!"
  5. fmt.Printf("The length of str is: %d\n", len(str))
  6. for pos, char := range str {
  7. fmt.Printf("Character on position %d is: %c \n", pos, char)
  8. }
  9. fmt.Println()
  10. str2 := "Chinese: 汉语"
  11. fmt.Printf("The length of str2 is: %d\n", len(str2))
  12. for pos, char := range str2 {
  13. fmt.Printf("character %c starts at byte position %d\n", char, pos)
  14. }
  15. fmt.Println()
  16. fmt.Println("index int(rune) rune char bytes")
  17. for index, rune := range str2 {
  18. fmt.Printf("%-2d %d %U '%c' % X\n", index, rune, rune, rune, []byte(string(rune)))
  19. }
  20. }

输出:

  1. The length of str is: 27
  2. Character on position 0 is: G
  3. Character on position 1 is: o
  4. Character on position 2 is:
  5. Character on position 3 is: i
  6. Character on position 4 is: s
  7. Character on position 5 is:
  8. Character on position 6 is: a
  9. Character on position 7 is:
  10. Character on position 8 is: b
  11. Character on position 9 is: e
  12. Character on position 10 is: a
  13. Character on position 11 is: u
  14. Character on position 12 is: t
  15. Character on position 13 is: i
  16. Character on position 14 is: f
  17. Character on position 15 is: u
  18. Character on position 16 is: l
  19. Character on position 17 is:
  20. Character on position 18 is: l
  21. Character on position 19 is: a
  22. Character on position 20 is: n
  23. Character on position 21 is: g
  24. Character on position 22 is: u
  25. Character on position 23 is: a
  26. Character on position 24 is: g
  27. Character on position 25 is: e
  28. Character on position 26 is: !
  29. The length of str2 is: 18
  30. character C starts at byte position 0
  31. character h starts at byte position 1
  32. character i starts at byte position 2
  33. character n starts at byte position 3
  34. character e starts at byte position 4
  35. character s starts at byte position 5
  36. character e starts at byte position 6
  37. character : starts at byte position 7
  38. character starts at byte position 8
  39. character starts at byte position 9
  40. character starts at byte position 12
  41. index int(rune) rune char bytes
  42. 0 67 U+0043 'C' 43
  43. 1 104 U+0068 'h' 68
  44. 2 105 U+0069 'i' 69
  45. 3 110 U+006E 'n' 6E
  46. 4 101 U+0065 'e' 65
  47. 5 115 U+0073 's' 73
  48. 6 101 U+0065 'e' 65
  49. 7 58 U+003A ':' 3A
  50. 8 32 U+0020 ' ' 20
  51. 9 26085 U+65E5 '汉' E6 97 A5
  52. 12 26412 U+672C '语' E6 9C AC

我们可以看到,常用英文字符使用 1 个字节表示,而汉字使用 3 个字符表示。

数组切片 中的应用

  1. for ix, value := range slice1 {
  2. ...
  3. }

ix 是数组或者切片的索引value 是在该索引位置的值,他们都是仅在 for 循环内部可见的局部变量。value 只是 slice1ix 索引位置的值的一个拷贝,不能用来修改 slice1 该索引位置的值。

示例 slices_forrange.go

  1. package main
  2. import "fmt"
  3. func main() {
  4. var slice1 []int = make([]int, 4)
  5. slice1[0] = 1
  6. slice1[1] = 2
  7. slice1[2] = 3
  8. slice1[3] = 4
  9. for ix, value := range slice1 {
  10. fmt.Printf("Slice at %d is: %d\n", ix, value)
  11. }
  12. }

示例 slices_forrange2.go

  1. package main
  2. import "fmt"
  3. func main() {
  4. seasons := []string{"Spring", "Summer", "Autumn", "Winter"}
  5. for ix, season := range seasons {
  6. fmt.Printf("Season %d is: %s\n", ix, season)
  7. }
  8. var season string
  9. for _, season = range seasons {
  10. fmt.Printf("%s\n", season)
  11. }
  12. }

示例slicesforrange2.go 给出了一个关于字符串的例子, `` 可以用于忽略索引。

如果你只需要索引,你可以忽略第二个变量:

  1. for ix := range seasons {
  2. fmt.Printf("%d", ix)
  3. }
  4. // Output: 0 1 2 3

多维切片下的 for-range

  1. for row := range screen {
  2. for column := range screen[row] {
  3. screen[row][column] = 1
  4. }
  5. }

练习:写一个 Sum 函数,传入参数为一个 32 位 float 组成的数组 arrF,返回该数组的所有数字和。如果把数组修改为切片的话代码要做怎样的修改?如果用切片形式方法实现不同长度数组的的和呢?

分类导航