英文: Does Go support templates or generics? 问题 我知道Go语言在传统的面向对象编程(OOP)中没有类的概念,但是Go提供了接口的概念,可以实现大部分你想要做...
导入的结构方法不起作用
英文: Imported struct method not working 问题 如果我运行以下代码,一切都可以编译和正常运行: package main import "fmt" ...
Constructors in Go
英文: Constructors in Go 问题 我有一个结构体,我希望它能够用一些合理的默认值进行初始化。 通常情况下,可以使用构造函数来实现这个目的,但是由于Go并不是传统意义上的面向对象编程语...
如何在golang中创建一个自动调用的结构体方法?
英文: How to create a method of a structure in golang that is called automatically? 问题 我必须在golang中创建一个...
Golang: Is there any way to access the "child" struct in the "parent" struct's methods in Go's composition model?
英文: Golang: Is there any way to access the "child" struct in the "parent" struct...
Go语言的接口编程模型与面向对象编程(OOP)相比如何?
英文: How Go's interface programming model compares to OOP? 问题 我已经阅读了大部分Go教程,但我仍然不清楚Go的接口编程模型与面向对象...
建模一组相关事物的层次结构,但没有语言支持类型层次结构。
英文: Modeling a hierarchy of related things without language support for type hierarchies 问题 我是Go的新手,...
在Go编程语言中,任何类型都可以实现泛型列表。
英文: Any type and implementing generic list in go programming language 问题 我正在尝试一点点Go编程语言。 我对Go的简洁性感到兴...
如何在Go中进行子类化
英文: How to subclass in Go 问题 在Go语言中,可以使用嵌入结构体的方式实现类似的功能。 type Point struct { x, y int } type Circle ...
返回接收者本身的方法的目的是什么(Go语言)?
英文: What is the purpose of a method that returns the receiver itself (Go)? 问题 这个在pkg go/token中的函数让我想...
37