在Go语言中有foreach结构吗? 我可以迭代一个片或数组使用for?
当前回答
这可能是显而易见的,但你可以像这样内联数组:
package main
import (
"fmt"
)
func main() {
for _, element := range [3]string{"a", "b", "c"} {
fmt.Print(element)
}
}
输出:
abc
https://play.golang.org/p/gkKgF3y5nmt
其他回答
我刚刚实现了这个库: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
在操场上试试这段代码。
这可能是显而易见的,但你可以像这样内联数组:
package main
import (
"fmt"
)
func main() {
for _, element := range [3]string{"a", "b", "c"} {
fmt.Print(element)
}
}
输出:
abc
https://play.golang.org/p/gkKgF3y5nmt
下面的例子展示了如何在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;
}
该示例遍历一个函数数组,以统一函数的错误处理。一个完整的例子是谷歌的游乐场。
PS:这也表明挂大括号对于代码的可读性来说是一个坏主意。提示:for条件刚好在action()调用之前结束。很明显,不是吗?
对于带有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
}
下划线_是空白标识符,一个匿名占位符。
下面是如何在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
推荐文章
- JavaScript: .forEach()和.map()的区别
- 如何正确的种子随机数生成器
- 按(任意)字段名对结构数组进行排序的最短方法是什么?
- Go中结构体的堆栈与堆分配,以及它们与垃圾收集的关系
- TypeScript for…的索引/键?
- Linq风格的“For Each”
- foreach和map有区别吗?
- 如何获取切片的最后一个元素?
- 使用c++ 11的基于范围的正确方法是什么?
- 不能将数据(类型接口{})转换为类型字符串:需要类型断言
- 解析Go中的RFC-3339 / ISO-8601日期-时间字符串
- 声明一个常量数组
- 函数可以作为参数传递吗?
- [].slice的解释。调用javascript?
- 如何使用“测试”包打印Go测试?