14
如何在Go中找到对象的类型?
如何在Go中找到对象的类型?在Python中,我只是typeof用来获取对象的类型。类似地,在Go中,是否可以实现相同的方法? 这是我要迭代的容器: for e := dlist.Front(); e != nil; e = e.Next() { lines := e.Value fmt.Printf(reflect.TypeOf(lines)) } 在这种情况下,我无法获取对象线的类型,即字符串数组。
387
go
go-reflect