gpt4 book ai didi

go - 在 Golang 中转换函数类型

转载 作者:IT王子 更新时间:2023-10-29 02:26:37 25 4
gpt4 key购买 nike

// Each type have Error() string method.
// The error built-in interface type is the conventional interface for
// representing an error condition, with the nil value representing no error.
// type error interface {
// Error() string
// }

func (f binFunc) Error() string {
return "binFunc error"
}

func func_type_convert() {
var err error
err = binFunc(add)
fmt.Println(err)
fmt.Println(i)
}

我对上面的代码有两个问题:

  • add函数被转换为binFunc类型时,我不知道为什么执行Error方法?
  • 为什么 add 函数转换后的结果能够赋值给一个 err 错误接口(interface)变量?

最佳答案

error 是一个接口(interface):

type error interface {
Error() string
}

这意味着任何具有方法的类型:Error() string 都满足接口(interface)并且可以分配给类型为 error 的变量。

binFunc有这样一个方法:

func (f binFunc) Error() string {
return "binFunc error"
}

Go 的新开发者有时会感到困惑,因为他们没有意识到可以将方法附加到结构之外。在这种情况下,binFunc 的定义如下:

type binFunc func(int, int) int

所以它的工作方式是允许您转换任何具有相同签名的函数:(来自 spec )

A function type denotes the set of all functions with the same parameter and result types.

因此,如果您创建一个函数 add:

func add(x, y int) int {
return x + y
}

您可以将其转换为 binFunc:

binFunc(add)

并且由于我们在上面定义的 binFunc 上的 Error 方法,我们可以将这个新的 binFunc 分配给一个类型的变量错误:

var err error
var bf binFunc = binFunc(add)
err = bf

fmt.Println 的行为是在出现错误时调用 .Error() for you :

  1. If an operand implements the error interface, the Error method will be invoked to convert the object to a string, which will then be formatted as required by the verb (if any).

所以回答你的问题:

  • 执行 Error 方法是因为 fmt.Println 查找类型为 error 的参数,调用 .Error() 并打印结果字符串。
  • 您可以将 binFunc 分配给 err,因为 binFunc 有一个 Error 方法。您不能将 add 直接分配给 err,因为它没有 Error 方法。但是您可以将 add 转换为 binFunc,因为它们具有相同的函数签名,这样您就可以将其分配给 err 变量。

关于go - 在 Golang 中转换函数类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32393460/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com