为了账号安全,请及时绑定邮箱和手机立即绑定

不能在函数调用中使用 golang 泛型变量

不能在函数调用中使用 golang 泛型变量

Go
开满天机 2022-11-23 16:17:09
我想了解 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约束,因此也可以假定类型intfloat64或任何具有基础类型 ( ) 的非string类型,其中没有一个隐式转换为。string~stringstring

我如何解决它?

您需要将其定义更改BoolCase为其一个参数具有泛型类型参数。您可以将其限制为Inputer,但也可以使用anyinterface{})。

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


查看完整回答
反对 回复 2022-11-23
  • 1 回答
  • 0 关注
  • 92 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信