How to find a type of an object in Go?

Answers • 2 Asked • Jan 19 2020
How do I find the type of an object in Go? In Python, I just use typeof to fetch the type of object. Similarly in Go, is there a way to implement the same ?

Here is the container from which I am iterating:
for e := dlist.Front(); e != nil; e = e.Next() { lines := e.Value fmt.Printf(reflect.TypeOf(lines)) }

I am not able to get the type of the object lines in this case which is an array of strings.

Write your answer...

On a mission to build Next-Gen Community Platform for Developers