英文: How to arbitrarily extend an "object" 问题 我希望我的问题能够清楚地表达出来。我已经尽力简洁地描述了,但如果需要澄清,请提出问题。 在...
Go语言中的继承
英文: Inheritance in Go 问题 为什么Go语言没有类型继承? (类型继承是指当定义一个对象的类时,任何定义的子类都可以继承一个或多个通用类的定义的概念) 英文: Why doesn'...
Golang: when typecasting child struct to parent struct, is child struct information lost?
英文: Golang: when typecasting child struct to parent struct, is child struct information lost? 问题 例如,...
调用命名类型的方法
英文: Calling method of named type 问题 我有一个命名类型,我需要创建它来进行一些JSON解组: type StartTime time.Time func (st *S...
Golang继承使用设置受保护的值
英文: Golang inheritance using setting protected values 问题 我正在尝试更好地理解如何在Go语言中使用受保护空间。我来自Java,可以通过受保护继承...
Golang和继承
英文: Golang and inheritance 问题 我想在我的库中提供一个带有方法的基本结构体,可以进行“扩展”。 这个基本结构体的方法依赖于扩展结构体的方法。 在Go语言中,这是不直接可能的...
Go – how to explicitly state that a structure is implementing an interface?
英文: Go - how to explicitly state that a structure is implementing an interface? 问题 由于Go语言非常注重接口,我想知道...
在Go语言中,可以通过将基类的实例赋值给继承类来实现继承。
英文: Assignment from base class to inherit class in Go 问题 我知道Go语言没有这样的面向对象概念,但是让我借用一下它们只是为了更容易解释。面向对象...
在Go语言中,是可以同时指定具有变量的结构体和接口的。
英文: Is it possible to specify both a structure with variables and an interface at the same time in g...
Go语言中使用接口实现继承的等效方式,包括数据和成员函数。
英文: GoLang equivalent for inheritence using interface with data and member functions 问题 我是一名 Golang ...
29