扩展 Go 中的现有类型
当尝试从导入的包中向现有类型添加自定义方法时,您可能会遇到错误,表明您无法在非本地类型上定义新方法。此限制源于 Go 的类型系统,该系统不允许修改其他地方定义的类型。
要规避此限制,有两种主要方法:
type MyRoute struct { *mux.Route } func (m *MyRoute) Subroute(tpl string, h http.Handler) *mux.Route { return m.PathPrefix("/" + tpl).Subrouter().PathPrefix("/").Handler(h) } type MyRouter struct { *mux.Router } func (r *MyRouter) Subroute(tpl string, h http.Handler) *mux.Route { return r.PathPrefix("/" + tpl).Subrouter().PathPrefix("/").Handler(h) }
type MyRoute embed mux.Route func (m *MyRoute) Subroute(tpl string, h http.Handler) *mux.Route { return m.PathPrefix("/" + tpl).Subrouter().PathPrefix("/").Handler(h) } type MyRouter embed mux.Router func (r *MyRouter) Subroute(tpl string, h http.Handler) *mux.Route { return r.PathPrefix("/" + tpl).Subrouter().PathPrefix("/").Handler(h) }
以上是如何向 Go 中的现有类型添加方法?的详细内容。更多信息请关注PHP中文网其他相关文章!