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 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 lammps拉伸应力应变曲线分析
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题
  • ¥30 python代码,帮调试,帮帮忙吧
  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建