2023年12月21日 golang 泛型demo go 1.18版本新出的泛型package main import "fmt" // ~代表衍生 如果不加~ 使用MyInt 作为int传入就会报错 type MyInt int type AA interface { ~int | float64 } // 定义一个泛型函数