Go中有一个Foreach循环吗?

Go语言中是否有foreach构造? 我可以使用for迭代切片或数组吗?

529624 次浏览

来自对于带有range子句的语句

带有“range”子句的“for”语句遍历所有条目 数组、切片、字符串或映射,或在通道上接收的值。 对于每个条目,它将迭代值分配给相应的迭代 变量,然后执行块。

举个例子:

for index, element := range someSlice {
// index is the index where we are
// element is the element from someSlice for where we are
}

如果你不关心索引,你可以使用_

for _, element := range someSlice {
// element is the element from someSlice for where we are
}

下划线_空白标识符,一个匿名占位符。

以下示例显示如何在for循环中使用range运算符来实现foreach循环。

func PrintXml (out io.Writer, value interface{}) error {
var data []byte
var err error


for _, action := range []func() {
func () { data, err = xml.MarshalIndent(value, "", "  ") },
func () { _, err = out.Write([]byte(xml.Header)) },
func () { _, err = out.Write(data) },
func () { _, err = out.Write([]byte("\n")) }} {
action();
if err != nil {
return err
}
}
return nil;
}

该示例遍历函数数组以统一函数的错误处理。一个完整的示例位于Google的游乐场

PS:它还表明,挂括号对于代码的易读性来说是一个坏主意。提示:for条件在action()调用之前结束。很明显,不是吗?

Go具有类似foreach的语法。它支持数组/切片、映射和通道。

遍历阵列切片

// index and value
for i, v := range slice {}


// index only
for i := range slice {}


// value only
for _, v := range slice {}

遍历地图

// key and value
for key, value := range theMap {}


// key only
for key := range theMap {}


// value only
for _, value := range theMap {}

遍历通道

for v := range theChan {}

迭代通道相当于从通道接收直到关闭:

for {
v, ok := <-theChan
if !ok {
break
}
}

实际上,您可以通过对您的类型使用for range来使用range而无需引用其返回值:

arr := make([]uint8, 5)
i,j := 0,0
for range arr {
fmt.Println("Array Loop", i)
i++
}


for range "bytes" {
fmt.Println("String Loop", j)
j++
}

https://play.golang.org/p/XHrHLbJMEd

以下是如何在Go中使用Foreach的示例代码:

package main


import (
"fmt"
)


func main() {


arrayOne := [3]string{"Apple", "Mango", "Banana"}


for index,element := range arrayOne{


fmt.Println(index)
fmt.Println(element)


}


}

这是一个运行示例https://play.golang.org/p/LXptmH4X_0

这可能很明显,但你可以像这样内联数组:

package main


import (
"fmt"
)


func main() {
for _, element := range [3]string{"a", "b", "c"} {
fmt.Print(element)
}
}

产出:

abc

https://play.golang.org/p/gkKgF3y5nmt

是的,<强>范围

进行循环的范围形式在切片或映射上迭代。

对切片进行测距时,每次迭代都会返回两个值。第一个是索引,第二个是该索引处元素的副本。

示例:

package main


import "fmt"


var pow = []int{1, 2, 4, 8, 16, 32, 64, 128}


func main() {
for i, v := range pow {
fmt.Printf("2**%d = %d\n", i, v)
}


for i := range pow {
pow[i] = 1 << uint(i) // == 2**i
}
for _, value := range pow {
fmt.Printf("%d\n", value)
}
}
  • 您可以通过分配给_来跳过索引或值。
  • 如果只需要索引,请完全删除,值。

我刚刚实现了这个库:https://github.com/jose78/go-collection

这是一个如何使用Foreach循环的示例:

package main


import (
"fmt"


col "github.com/jose78/go-collection/collections"
)


type user struct {
name string
age  int
id   int
}


func main() {
newList := col.ListType{user{"Alvaro", 6, 1}, user{"Sofia", 3, 2}}
newList = append(newList, user{"Mon", 0, 3})


newList.Foreach(simpleLoop)


if err := newList.Foreach(simpleLoopWithError); err != nil{
fmt.Printf("This error >>> %v <<< was produced", err )
}
}


var simpleLoop col.FnForeachList = func(mapper interface{}, index int) {
fmt.Printf("%d.- item:%v\n", index, mapper)
}




var simpleLoopWithError col.FnForeachList = func(mapper interface{}, index int) {
if index > 1{
panic(fmt.Sprintf("Error produced with index == %d\n", index))
}
fmt.Printf("%d.- item:%v\n", index, mapper)
}

此执行的结果应该是:

0.- item:{Alvaro 6 1}
1.- item:{Sofia 3 2}
2.- item:{Mon 0 3}
0.- item:{Alvaro 6 1}
1.- item:{Sofia 3 2}
Recovered in f Error produced with index == 2


ERROR: Error produced with index == 2
This error >>> Error produced with index == 2
<<< was produced

在playGrounD中尝试此代码

我看到了很多使用范围的例子。提醒一下,范围会创建你正在迭代的任何内容的副本。如果你对foreach范围中的内容进行更改,你将不会更改原始容器中的值,在这种情况下,你需要一个传统的for循环,其中包含一个你递增的索引和尊重索引的引用。例如:

for i := 0; i < len(arr); i++ {
element := &arr[i]
element.Val = newVal
}