【GO语言|Go1.8 泛型简单上手使用】经过这几年的千呼万唤,简洁的Go语言终于在1.18版本迎来泛型编程。
泛型是什么 在我看来泛型其实用C++的模板一词来描述就非常的准确。在写代码的时候,我们经常需要写很多重复的逻辑,一般这个时候我们就会使用函数来对其进行封装。但是由于Go是一种强类型语言,所以在定义和书写函数的时候需要在调用前标明类型。当然如果这一重复的逻辑只需要固定的类型,这样就足够了,但是很多时候我们需要不同的类型进行类似的逻辑,譬如我们刚刚看到的GIF。对于普通开发人员来说这种情况可能遇到的比较少,但是在一些库开发人员来说,这种情况变得非常的普遍。
泛型程序设计(generic programming)是程序设计语言的一种风格或范式。泛型允许程序员在强类型程序设计语言中编写代码时使用一些以后才指定的类型,在实例化时作为参数指明这些类型。各种程序设计语言和其编译器、运行环境对泛型的支持均不一样。Ada、Delphi、Eiffel、Java、C#、F#、Swift 和 Visual Basic .NET 称之为泛型(generics);ML、Scala 和 Haskell 称之为参数多态(parametric polymorphism);C++ 和 D称之为模板。具有广泛影响的1994年版的《Design Patterns》一书称之为参数化类型(parameterized type)。
例如:
vector v;
v.push_back(1);
中的int就指定了v中存储元素的类型为int, 也可以替换成其他你想要存储的类型
自定义模板, 只需要:
template
class Vector{
int mLen;
T* data;
};
又比如Java中也有泛型的概念:
class Vector{
public void push_back(T val){
//implement...
}
}
Go的泛型 泛型语法详解
MyType[T1 constraint1 | constraint2, T2 constraint3...] ...
泛型的语法非常简单, 就类似于上面这样, 其中:
- MyType可以是函数名, 结构体名, 类型名…
- T1, T2…是泛型名, 可以随便取
- constraint的意思是约束, 也是泛型中最重要的概念, 接下来会详解constraint
- 使用 | 可以分隔多个constraint, T满足其中之一即可(如T1可以是constraint1和constraint2中的任何一个)
而常用的范围, 我们自然会想到的有:
- any(interface{}, 任何类型都能接收, 多方便啊!)
- Interger(所有int, 多方便啊, int64 int32…一网打尽)
- Float(同上)
- comparable(所有可以比较的类型, 我们可以给所有可以比较的类型定制一些方法)
下面是builtin.go的部分官方源码:
// any is an alias for interface{} and is equivalent to interface{} in all ways.
type any = interface{}// comparable is an interface that is implemented by all comparable types
// (booleans, numbers, strings, pointers, channels, interfaces,
// arrays of comparable types, structs whose fields are all comparable types).
// The comparable interface may only be used as a type parameter constraint,
// not as the type of a variable.
type comparable comparable
下面是constraints.go的部分官方源码:
// Integer is a constraint that permits any integer type.
// If future releases of Go add new predeclared integer types,
// this constraint will be modified to include them.
type Integer interface {
Signed | Unsigned
}// Float is a constraint that permits any floating-point type.
// If future releases of Go add new predeclared floating-point types,
// this constraint will be modified to include them.
type Float interface {
~float32 | ~float64
}
//......
自定义constraint(约束)
type Signed interface {
~int | ~int8 | ~int16 | ~int32 | ~int64
}
Signed约束就是这样被写出来的, 其中需要我们get的点有如下几个:
- 使用interface{}就可以自定义约束
- 使用 | 就可以在该约束中包含不同的类型, 例如int, int8, int64均满足Signed约束
package mainimport "fmt"func main() {
fmt.Println(maxInt(32, 64))
}func maxInt(a, b int) int {
if a > b {
return a
}
return b
}
这个时候我需要增加一个获取float64的最大值,那么我们就要新增一个函数叫maxFloat64:
func maxFloat64(a, b float64) float64 {
if a > b {
return a
}
return b
}
每当我们需要对一种类型进行比较的时候,我们都需要重新编写一个函数,尽管他们的逻辑其实都是一样的,将来甚至还需要int8、int16、int32等等的类型。
当引入泛型之后,我们可以写成:
package mainimport (
"fmt"
)func main() {
fmt.Println(max(1, 2))
fmt.Println(max[int32](1, 2))
fmt.Println(max(1.5, 2.3))
}func max[T int | int8 | int16 | int32 | int64 | float32 | float64](a, b T) T {
if a > b {
return a
}
return b
}
当然,后面跟了一长串的int|int8、、、这样实在有点费劲,如果我们之后需要增加一个min函数呢,岂不是又要把上面的这些抄一遍吗,所以这里还可以用interface提前定义下:
package mainimport (
"fmt"
)func main() {
fmt.Println(max(1, 2))
fmt.Println(max[int32](1, 2))
fmt.Println(max(1.5, 2.3)) fmt.Println(min(1, 2))
fmt.Println(min[int32](1, 2))
fmt.Println(min(1.5, 2.3))}type Number interface {
int | int8 | int16 | int32 | int64 | float32 | float64
}func max[T Number](a, b T) T {
if a > b {
return a
}
return b
}func min[T Number](a, b T) T {
if a < b {
return a
}
return b
}
在结构体中使用泛型 除了函数声明中可以使用泛型,结构体中一样可以使用:
package mainimport (
"fmt"
)type Data[T comparable] struct {
Message T
}func (d Data[T]) Print() {
fmt.Println(d.Message)
}func main() {
d := Data[int]{
Message: 66,
}
d.Print()
}
这里有个类型:comparable
可以看看go的源码里面写的:
// comparable is an interface that is implemented by all comparable types
// (booleans, numbers, strings, pointers, channels, arrays of comparable types,
// structs whose fields are all comparable types).
// The comparable interface may only be used as a type parameter constraint,
// not as the type of a variable.
type comparable interface{ comparable }
大概意思就是允许booleans, numbers, strings, pointers, channels, comparable类型组成的arrays以及所有字段都是由comparable类型组成的struct。
这里也有一个any类型:
// any is an alias for interface{} and is equivalent to interface{} in all ways.
type any = interface{}
推荐阅读
- golang|Go1.18版本泛型详解
- GO学习笔记|go泛型使用方法
- 【第四十三期】社招面经-后端开发 蚂蚁
- 【第十三期】B站后端开发实习生一、二面经
- 【第三十一期】360后台开发实习面经 - 两轮技术面
- golang|golang性能分析工具pprof介绍
- golang|【golang】源码层面学习日志框架logrus 01
- Go精进|Go语言学习笔记——Golang 1.18新特性泛型
- Go|《Go Web 编程》之第4章 处理请求