Go语言中有foreach循环吗?

u3r8eeie  于 2022-12-07  发布在  Go
关注(0)|答案(9)|浏览(143)

Go语言中有foreach结构吗?我可以用for来迭代一个切片或数组吗?

7qhs6swi

7qhs6swi1#

From * 对于带有range子句的语句 *:
带有“range”子句的“for”语句遍历数组、切片、字符串或Map的所有条目,或者通道上接收到的值。对于每个条目,它将迭代值赋给相应的迭代变量,然后执行该块。
例如:

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
}

下划线_是 * 空白标识符 *,即匿名占位符。

zzwlnbp8

zzwlnbp82#

Go语言有一个类似foreach的语法,它支持数组/切片、Map和通道。
迭代数组切片

// 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
    }
}
kzmpq1sx

kzmpq1sx3#

下面是在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

c0vxltue

c0vxltue4#

下列范例显示如何在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的playground中找到。
PS:它也表明了悬挂大括号对于代码的可读性来说是个坏主意。提示:for条件在action()调用之前结束。很明显,不是吗?

rryofs0p

rryofs0p5#

实际上,通过对类型使用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

7kjnsjlb

7kjnsjlb6#

是,范围

  • for* 循环的range形式在切片或Map上迭代。

当范围覆盖一个切片时,每次迭代返回两个值。第一个值是索引,第二个值是该索引处元素的副本。
示例:

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)
    }
}
  • 您可以将指定给_,以略过索引或值。
  • 如果只需要索引,请完全删除,值。
iyfamqjs

iyfamqjs7#

这可能是显而易见的,但您可以像这样内联数组:

package main

import (
    "fmt"
)

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

输出:

abc

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

ghg1uchk

ghg1uchk8#

我刚刚实现了这个库: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

是的。

g52tjvyc

g52tjvyc9#

我看到了很多使用range的例子。只要一个提示,range就会创建一个你正在迭代的内容的副本。如果你对foreach范围中的内容进行了修改,你将不会改变原始容器中的值,在这种情况下,你将需要一个传统的for循环,带有一个递增的索引和遵从的索引引用。例如:

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

相关问题