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 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题
  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题
  • ¥15 multisim电路设计
  • ¥20 用keil,写代码解决两个问题,用库函数
  • ¥50 ID中开关量采样信号通道、以及程序流程的设计
  • ¥15 U-Mamba/nnunetv2固定随机数种子
  • ¥15 vba使用jmail发送邮件正文里面怎么加图片
  • ¥15 vb6.0如何向数据库中添加自动生成的字段数据。