假设我有一个Graph结构,如下所示:
type Graph struct {
nodes []int
adjList map[int][]int
}
// some methods on the struct
// constructor
func New() *Graph {
g := new(Graph)
g.adjList = make(map[int][]int)
return g
}
现在,我创建了结构的新实例,有:aGraph := New()。
如何访问Graph结构 ( aGraph)的这个特定实例的字段?换句话说,我如何访问aGraph's 版本的nodes数组(例如,从另一个顶级函数中)?
非常感谢任何帮助!
慕后森
相关分类