我想了解 go1.18 中的泛型实现。在我的测试示例中,我存储了一系列测试用例并尝试调用一个函数变量。不幸的是,当我尝试使用变量tc.input时EvalCases函数出现错误,我收到以下错误:不能使用输入(受 Inputer 约束的 T 类型变量)作为 fn 参数中的字符串类型为什么我会收到该错误,我该如何解决?import ( "fmt" "strconv")type BoolCase func(string) booltype Inputer interface { int | float64 | ~string}type Wanter interface { Inputer | bool}type TestCase[T Inputer, U Wanter] struct { input T want U}type TestConditions[T Inputer, U Wanter] map[string]TestCase[T, U]// IsNumeric validates that a string is either a valid int64 or float64func IsNumeric(s string) bool { _, err := strconv.ParseFloat(s, 64) return err == nil}func EvalCases[T Inputer, U Wanter](cases TestConditions[T, U], fn BoolCase) { for name, tc := range cases { input := T(tc.input) want := tc.want // Error: cannot use input (variable of type T constrained by Inputer) as type string in argument to fn got := fn(input) fmt.Printf("name: %-20s | input: %-10v | want: %-10v | got: %v\n", name, input, want, got) }}func main() { var cases = TestConditions[string, bool]{ "empty": {input: "", want: false}, "integer": {input: "123", want: true}, "float": {input: "123.456", want: true}, } fn := IsNumeric EvalCases(cases, fn)}
1 回答
莫回无
TA贡献1865条经验 获得超7个赞
为什么我会收到该错误
因为fn
是 a BoolFunc
,它是 a func(string) bool
,因此需要 astring
作为参数,但是input
类型是T
。此外,根据您的定义,T
满足Inputer
约束,因此也可以假定类型int
,float64
或任何具有基础类型 ( ) 的非string
类型,其中没有一个隐式转换为。string
~string
string
我如何解决它?
您需要将其定义更改BoolCase
为其一个参数具有泛型类型参数。您可以将其限制为Inputer
,但也可以使用any
( interface{}
)。
type BoolCase[T any] func(T) bool
然后确保在函数的签名中提供这个泛型类型参数EvalCases
:
func EvalCases[T Inputer, U Wanter](cases TestConditions[T, U], fn BoolCase[T])
https://go.dev/play/p/RdjQXJ0WpDh
- 1 回答
- 0 关注
- 92 浏览
添加回答
举报
0/150
提交
取消