Go泛型草案設計簡明指南

360雲端計算發表於2020-06-28

女主宣言






今天小編為大家分享一篇關於Golang泛型提案的最新設計草案。涉及有關為何做出某些決策的詳細資訊,實施細節等。希望能對大家有所幫助。

PS:豐富的一線技術、多元化的表現形式,盡在“360雲端計算”,點關注哦!

最近,go團隊宣佈了針對其go泛型提案的最新設計草案。涉及有關為何做出某些決策的詳細資訊,實施細節等。

因為整個草案設計內容太多了,所以本文中,我們的目標是總結即將進行的主要更改。

我們將提供一些程式碼片段來演示主要功能。

1

泛型函式中的型別約束

不受型別引數限制的通用函式:

// package decls, imports...

func arrayOf(type T)(elems ...T) []T {
 arr := []T{}
 for _, el := range elems {
   arr = append(arr, el)
 }

 return arr
}

func main() {
 strs := arrayOf("one", "two", "three", "four", "five")
 fmt.Println(strs)

 nums := arrayOf(1, 2, 3, 4, 5)
 fmt.Println(nums)
}

要對通用型別新增約束,可以要求實現給定的介面:

// package decls, imports...

// Person, who implements fmt.Stringer...

func join(type T fmt.Stringer)(tokens []T, delim string) string {
 res := ""
 for _, token := range tokens {
   if res != "" {
     res += delim
   }

   res += token.String()
 }

 return res
}

func main() {
 joined := join([]Person{Person{"Mike", "Jordan"}, Person{"Dave", "Stevens"}, Person{"John", "Doe"}}, ", ")
 fmt.Println(joined)
}

要指定多個型別引數,用逗號分隔:

// package decls, imports...

func mapAll(type T, R)(arr []T, mapFunc func(T) R) []R {
 res := []R{}
 for _, el := range arr {
   res = append(res, mapFunc(el))
 }

 return res
}

func main() {
 strs := mapAll([]int{1, 2, 3}, func(n int) string {
   return strconv.Itoa(n)
 })

 fmt.Println(strs)
}

對多個型別引數的約束,與編寫函式引數型別相同的方式寫入:

// package decls, imports...

// Person & Animal structs, which implement fmt.Stringer...

func Concat(type T1, T2 fmt.Stringer)(f T1, s T2, delim string) string {
 return f.String() + delim + s.String()
}

func main() {
 res := Concat(Person{"John", "Doe"}, Animal{"Dog", "Richie"}, " loves his ")
 fmt.Println(res)
}

以下是為兩個引數指定不同型別的方法:

// package decls, imports...

// Hooman & Pet interfaces...
// Person & Dog structs...

func PlayAround(type H Hooman, P Pet)(human H, pet P) {
 fmt.Println("The human says:", human.Speak())
 fmt.Println("And the pet responds:", pet.ProduceSound())
}

func main() {
 PlayAround(Person{}, Dog{})
}

2

型別列表及可比較

可以基於一組受支援的型別來約束它們,而不是基於一組方法來約束型別。例如,可以指定接受通用型別,該通用型別只能是int或long。

這能夠 利用“小於”,“大於”之類的運算子,僅適用於Go中的基本型別:

// package decls, imports...

// Ordered is a type constraint that matches any ordered type.
// An ordered type is one that supports the <, <=, >, and >= operators.
type Ordered interface {
 type int, int8, int16, int32, int64,
   uint, uint8, uint16, uint32, uint64, uintptr,
   float32, float64,
   string
}

func Max(type T Ordered)(elems []T) T {
 if len(elems) == 0 {
   var zero T
   return zero
 }

 max := elems[0]
 for _, el := range elems {
   if el > max {
     max = el
   }
 }

 return max
}

func main() {
 res := Max([]int{1, 5, 3, 10, 4})
 fmt.Println(res)
}

還具有一個稱為“comparable”的現成約束,該約束型別與支援==和!=運算子的約束型別相同。

// package decls, imports...

func Contains(type T comparable)(elems []T, target T) bool {
 for _, elem := range elems {
   if elem == target {
     return true
   }
 }

 return false
}

func main() {
 fmt.Println(Contains([]int{1, 2, 3, 4, 5}, 4))
}

使用這些構造的介面-型別列表和/或類似列表只能用作型別約束,而不能用作函式引數。

3

通用型別

可以使用泛型型別定義結構。一旦指定了型別宣告,就無需為該型別的所有函式指定型別:

// package decls, imports...

type Stack(type T) struct {
 buffer []T
}

func (v *Stack(T)) Push(elem T) {
 v.buffer = append(v.buffer, elem)
}

func (v *Stack(T)) Pop() T {
 res := v.buffer[len(v.buffer)-1]
 v.buffer = v.buffer[:len(v.buffer)-1]

 return res
}

func main() {
 st := &Stack(int){}

 st.Push(1)
 st.Push(2)
 st.Push(3)

 fmt.Println(st.Pop())
 fmt.Println(st.Pop())
 fmt.Println(st.Pop())
}

也可以在介面中執行此操作。當型別約束依賴於自身時,這尤其有用。

例如。有一個T的型別約束,它需要一個Equal方法,該方法接受一個T引數:

// package decls, imports...

// Person, who implements Equaler...

type Equaler(type T) interface {
 Equal(other T) bool
}

func Contains(type T Equaler)(elems []T, target T) bool {
 for _, elem := range elems {
   if elem.Equal(target) {
     return true
   }
 }

 return false
}

func main() {
 people := []Person{Person{"Dave"}, Person{"Bob"}, Person{"Steve"}}
 fmt.Println(Contains(people, Person{"Dave"}))
}

如果需要指定具有狀態修改功能的型別引數(例如,setter),則可以指定指標型別約束:

// package decls, imports...

type Setter interface {
Set(string)
}

type Settable int

// Set sets the value of *p from a string.
func (p *Settable) Set(s string) {
 i, _ := strconv.Atoi(s)
 *p = Settable(i)
}


func FromStrings(type *T Setter)(s []string) []T {
 result := make([]T, len(s))
 for i, v := range s {
   // result[i] is an addressable value of type T,
   // so it's OK to call Set.
   result[i].Set(v)
 }

 return result
}

func main() {
 nums := FromStrings(Settable)([]string{"1", "2", "3"})
 fmt.Println(nums)
}

注意,上面的示例如何要求明確指定將在函式中使用的型別– FromStrings(Settable)…

這是因為只要型別不作為函式引數出現,編譯程式碼後,編譯器就無法推斷實際型別。因此,需要明確指定它。


本文的目的是簡潔明瞭。希望它可以幫助大家快速瞭解最新的泛型草案設計。

但是,圍繞Go中的泛型進行任何單一設計選擇,背後都有很多理由。如果有興趣深入研究該主題,可以查閱官方設計草案文件。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69966971/viewspace-2700793/,如需轉載,請註明出處,否則將追究法律責任。

相關文章