无法在参数time.AfterFunc中使用func()类型的函数

时间:2019-01-08 00:36:26

标签: algorithm go

我不知道如何解决这个Go算法问题,而不会遇到几个嵌套函数问题。其中之一就是"cannot use func literal (type func()) as type func() string in return argument"

我现在正在使用的解决方案是:

// Write a function that takes in 2 numbers (a, b) and a function.
// It should execute the function after a milliseconds, 
// and then execute the function again after b milliseconds.

        package main

        import "time"                  

        func newFunc(b int, fn func() string) func() string {
                return func() {        
                        time.AfterFunc(time.Duration(b)*time.Second, fn)
                }
        } 

        func solution10(a, b int, fn func() string) string { 
                f := newFunc(b, fn)    
                time.AfterFunc(time.Duration(a)*time.Second, f)
        }

我将solution10的返回类型指定为字符串,因为我将传递的函数将返回一个字符串。不知道这是否正确。我将如何称呼此解决方案的示例:

func yourFunc() string {
            return "Hello world"
    } 

solution10(10, 100, yourFunc);

如果有人可以向我解释为什么我会收到该错误(我传递的每个函数的返回类型似乎是正确的),我很乐意。或者如果有人可以为它提供正确的解决方案,那么我可以学习一些技巧来解决这类与闭合有关的问题?

1 个答案:

答案 0 :(得分:2)

因为time.AfterFunc使用了func(),但是您使用的是func() string

如果您想呼叫func() string,可以将其包装

time.AfterFunc(time.Duration(b)*time.Second, func() {
    fn()
})