在介面方法中使用型別參數
在嘗試在Go 中實作通用資料結構時,在定義迭代器介面時遇到錯誤使用帶有類型參數的方法。本文解決了該問題並提供了解決方案。
接口定義錯誤
初始代碼定義了一個接口,其中的方法採用函數類型參數,這導致錯誤:“函數類型不能有類型參數。 Methoden 不能有專用型別參數。相反,解決方案是在介面類型本身上指定類型參數。這使您能夠在介面主體內的方法中使用類型參數。
已修正的程式碼:
使用在介面類型上定義的類型參數,您現在可以在預期的方法: 範例用法type Iterator[T any] interface { ForEachRemaining(action func(T) error) error // other methods }以下範例示範了通用迭代器介面的用法:
type MyIterator[T any] struct { // implementation of the iterator } func (i *MyIterator[T]) ForEachRemaining(action func(T) error) error { // implementation of the ForEachRemaining method using T return nil }
此程式碼定義了一個通用迭代器MyIterator,並使用它來迭代整數切片,列印每個值。
以上是如何在Go介面方法中使用型別參數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!