reflect.Type() Function in Golang with Examples Last Updated : 05 May, 2020 Comments Improve Suggest changes Like Article Like Report Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.Type() Function in Golang is used to get v's type. To access this function, one needs to imports the reflect package in the program. Syntax: func (v Value) Type() Type Parameters: This function does not accept any parameter. Return Value: This function returns the v's type. Below examples illustrate the use of above method in Golang: Example 1: C // Golang program to illustrate // reflect.Type() Function package main import ( "fmt" "reflect" ) // Main function func main() { var val chan int // use of Type() method value := reflect.MakeChan(reflect.Indirect(reflect.ValueOf(&val)).Type(), 0) fmt.Println("Value :", value) } Output: Value : 0xc00010c000 Example 2: C // Golang program to illustrate // reflect.Type() Function package main import ( "fmt" "reflect" ) // Main function func main() { var str map[int]string var strValue reflect.Value = reflect.ValueOf(&str) indirectStr := reflect.Indirect(strValue) //Use of Type() method valueMap := reflect.MakeMap(indirectStr.Type()) fmt.Printf("ValueMap is [%v] .", valueMap) } Output: ValueMap is [map[]] . Comment More infoAdvertise with us Next Article reflect.Type() Function in Golang with Examples S SHUBHAMSINGH10 Follow Improve Article Tags : Go Language Golang-reflect Similar Reads reflect.TypeOf() Function in Golang with Examples Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package.The reflect.TypeOf() Function in Golang is used to get the reflection Type that represents the dynamic type of i. To access th 1 min read reflect.TrySend() Function in Golang with Examples Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.TrySend() Function in Golang attempts to send x on the channel v but will not block. To access this function, one 2 min read reflect.Set() Function in Golang with Examples Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.Set() Function in Golang is used to assigns x to the value v. To access this function, one needs to imports the r 2 min read reflect.Uint() Function in Golang with Examples Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.Uint() Function in Golang is used to get v's underlying value, as a uint64. To access this function, one needs to 2 min read reflect.Swapper() Function in Golang with Examples Go language provides inbuilt support implementation of run-time reflection and allowing a program to manipulate objects with arbitrary types with the help of reflect package. The reflect.Swapper() Function in Golang is used to swaps the elements in the provided slice. To access this function, one ne 3 min read Like