Go 中列表元素函數應用的簡潔實現
當尋求對列表的每個成員應用轉換並存儲結果時在新列表中,通常採用顯式循環。然而,在Python 中,列表推導式提供了一個簡潔的替代方案,如下所示:
list = [1,2,3] str = ', '.join(multiply(x, 2) for x in list)
在Go 中,類似的方法需要更詳細的循環結構:
list := []int{1,2,3} list2 := []int for _,x := range list { list2 := append(list2, multiply(x, 2)) } str := strings.Join(list2, ", ")
然而,Go 1.18 引入了一個帶有Map 函數的優雅解決方案。以下是 Map 的實作及其用法:
func Map[T, V any](ts []T, fn func(T) V) []V { result := make([]V, len(ts)) for i, t := range ts { result[i] = fn(t) } return result }
input := []int{4, 5, 3} outputInts := Map(input, func(item int) int { return item + 1 }) outputStrings := Map(input, func(item int) string { return fmt.Sprintf("Item:%d", item) })
這種簡潔的語法簡化了列表元素的轉換,並且與此類任務的明確循環相比具有顯著的優勢。
以上是Go 的 Map 函數如何簡化列表元素轉換?的詳細內容。更多資訊請關注PHP中文網其他相關文章!