我有一个项目依赖于从另一个包导入的结构,我将其称为
TheirEntity
。
在下面的示例中,我(咳咳)将
TheirEntity
嵌入到 MyEntity
中,这是 TheirEntity
的扩展,并增加了功能。
但是,我不想在
TheirEntity
结构中导出 MyEntity
,因为我希望消费者不要直接访问 TheirEntity
。
我知道 Go 嵌入与经典 OOP 中的继承不同,所以也许这不是正确的方法,但是是否可以将嵌入结构指定为“私有”,即使它们是从另一个包导入的?如何以更惯用的方式实现同样的事情?
// TheirEntity contains functionality I would like to use...
type TheirEntity struct {
name string
}
func (t TheirEntity) PrintName() {
fmt.Println(t.name)
}
func NewTheirEntity(name string) *TheirEntity {
return &TheirEntity{name: name}
}
// ... by embedding in MyEntity
type MyEntity struct {
*TheirEntity // However, I don't want to expose
// TheirEntity directly. How to embed this
// without exporting and not changing this
// to a named field?
color string
}
func (m MyEntity) PrintFavoriteColor() {
fmt.Println(m.color)
}
func NewMyEntity(name string, color string) *MyEntity {
return &MyEntity{
TheirEntity: NewTheirEntity(name),
color: color,
}
}
像这样:
type MyEntity struct {
*privateTheirEntity
}
type privateTheirEntity struct {
*TheirEntity
}
[I]是否可以将嵌入结构指定为“私有”,即使它们是从另一个包导入的?
没有。
如何以更惯用的方式实现同样的事情?
通过不嵌入但使其成为未导出的命名字段。