du0204 2018-10-28 01:55
浏览 57
已采纳

声明一个类型,其中该类型是一个返回struct {}的函数

I have this:

type HandlerCreator = func() struct{}

I am trying to declare a type, where the type is a func that returns a struct{} value.

so, yeah, a HandlerCreator might look like:

type Handler struct{}

func CreateHandler() Handler {
    return Handler{}
}

and I am trying to use that type in a map:

var Handlers = map[string]HandlerCreator{
    "Register": register.CreateHandler,  // <<<< compile error
}

but it says:

cannot use register.CreateHandler (type func() register.Handler) as type func() struct {} in map value

anyone know how to do this?

Golang won't even let me do this:

var Handlers = map[string]func(){
    "Register": register.CreateHandler,
}

I get this error:

cannot use register.CreateHandler (type func() register.Handler) as type func() in map value

again, CreateHandler is just a simple func, shown above.

  • 写回答

1条回答 默认 最新

  • duanlian1320 2018-10-28 02:03
    关注

    When you say

    type Handler struct{}
    

    then the Handler type and an empty structure are different types. Therefore, a function returning Handler and a function returning struct{} are also of different types.

    If I was doing it, I'd change the "creator" type to return the renamed return type

    type HandlerCreator = func() Handler
    

    but it should also work to change the function to return struct{}, or to change Handler to a type alias.

    type Handler = struct{} // the "=" is important
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败