在 Node.js 中,map() 函数允许您通过转换原始数组的每个元素来创建新数组。在 Go 中,数组不如切片灵活,并且不支持方法。
但是,您可以实现一个通用的 Map 函数,该函数可用于将对象数组转换为其所需值的数组。
func Map[T, U any](ts []T, f func(T) U) []U { us := make([]U, len(ts)) for i := range ts { us[i] = f(ts[i]) } return us }
fruits := []struct{ fruit string }{ {fruit: "apple"}, {fruit: "banana"}, {fruit: "cherry"}, } fruitNames := Map(fruits, func(fruit struct{ fruit string }) string { return fruit.fruit }) fmt.Println(fruitNames) // Outputs: [apple banana cherry]
虽然使用单行 Map 函数很方便,但重要的是要考虑它的局限性:
尽管有这些考虑,Map 函数仍然可以为 Go 中的对象数组映射提供轻量级且优雅的解决方案。
以上是如何在 Go 中映射对象数组?的详细内容。更多信息请关注PHP中文网其他相关文章!