首页 >后端开发 >Golang >如何向 Go 中的现有类型添加方法?

如何向 Go 中的现有类型添加方法?

Susan Sarandon
Susan Sarandon原创
2025-01-03 10:07:39780浏览

How Can I Add Methods to Existing Types in Go?

扩展 Go 中的现有类型

当尝试从导入的包中向现有类型添加自定义方法时,您可能会遇到错误,表明您无法在非本地类型上定义新方法。此限制源于 Go 的类型系统,该系统不允许修改其他地方定义的类型。

要规避此限制,有两种主要方法:

  1. 定义一个新类型匿名字段: 这涉及创建一个新类型,将原始类型嵌入为匿名字段。然后,您可以将自定义方法添加到新类型中。
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)
}
  1. 嵌入现有类型: 您可以使用显式嵌入现有类型,而不是匿名嵌入嵌入关键字。这提供了对原始类型的字段和方法的访问,同时允许您定义其他方法。
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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn