泛型接口方法类型参数
在 Go 泛型中,方法不能直接拥有自己的类型参数。但是,它们可以利用在接口或结构级别定义的类型参数。
要解决编译错误,请在接口类型本身上定义泛型类型参数:
type Iterator[T any] interface { ForEachRemaining(action func(T) error) error }
在接口内body,然后您可以像任何其他类型一样使用 T 类型参数:
type Iterator[T any] interface { ForEachRemaining(action func(T) error) error // other methods }
这使您能够创建对特定数据类型进行操作的泛型方法,同时遵守 Go 泛型设计的约束。
以上是如何在 Go 泛型接口方法中使用类型参数?的详细内容。更多信息请关注PHP中文网其他相关文章!