Go 多态功能实现
Go本身不具有多态的特性,不能够像Java、C++那样编写多态类、多态方法。但是,使用Go可以编写具有多态功能的类绑定的方法。为什么这么说呢?因为Go使用struct构建类,根据不同类调用不同的方法。下面将展示如何使用Go编写多态功能。
package main
import (
"fmt"
)
type strCase struct{}
type intCase struct{}
func (text strCase) Add(x string, y string) string {
return x + y
}
func (number intCase) Add(x int, y int) int {
return x + y
}
func StartPolymorphism() {
number := new(intCase)
fmt.Print(" intCase Add: ", number.Add(1, 3), "\n")
text := new(strCase)
fmt.Print("strCase Add: ", text.Add("Add A", "Add B"), "\n")
}
func main(){
StartPolymorphism()
}
输出结果:
intCase Add: 4
strCase Add: Add AAdd B
使用struct对象类型来消除了方法的模糊性。Go没法像Java语言那样直接写 泛型类或者泛型方法。Go具有它独有的语言特性,主要是为实现高并发而生。
欢迎加入我的微信公众号
有疑问加站长微信联系(非本文作者)