小编典典

函数可以作为参数传递吗?

go

在 Java 中,我可以做类似的事情

derp(new Runnable { public void run () { /* run this sometime later */ } })

并稍后“运行”方法中的代码。处理起来很痛苦(匿名内部类),但可以做到。

Go 是否有一些东西可以促进作为参数传入的函数/回调?


阅读 186

收藏
2021-11-03

共1个答案

小编典典

是的,请考虑其中一些示例:

package main

import "fmt"

// convert types take an int and return a string value.
type convert func(int) string

// value implements convert, returning x as string.
func value(x int) string {
    return fmt.Sprintf("%v", x)
}

// quote123 passes 123 to convert func and returns quoted string.
func quote123(fn convert) string {
    return fmt.Sprintf("%q", fn(123))
}

func main() {
    var result string

    result = value(123)
    fmt.Println(result)
    // Output: 123

    result = quote123(value)
    fmt.Println(result)
    // Output: "123"

    result = quote123(func(x int) string { return fmt.Sprintf("%b", x) })
    fmt.Println(result)
    // Output: "1111011"

    foo := func(x int) string { return "foo" }
    result = quote123(foo)
    fmt.Println(result)
    // Output: "foo"

    _ = convert(foo) // confirm foo satisfies convert at runtime

    // fails due to argument type
    // _ = convert(func(x float64) string { return "" })
}
2021-11-03