reflect.ValueOf() Function in Golang with Examples Last Updated : 03 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.ValueOf() Function in Golang is used to get the new Value initialized to the concrete value stored in the interface i. To access this function, one needs to imports the reflect package in the program. Syntax: func ValueOf(i interface{}) Value Parameters: This function takes the following parameters: i: This parameter is the interface. Return Value: This function returns the new Value initialized to the concrete value stored in the interface i. Below examples illustrate the use of above method in Golang: Example 1: C // Golang program to illustrate // reflect.ValueOf() Function package main import ( "fmt" "reflect" ) // Main function func main() { a := []int{2, 5} var b reflect.Value = reflect.ValueOf(&a) b = b.Elem() fmt.Println("Slice :", a) //use of ValueOf method b = reflect.Append(b, reflect.ValueOf(80)) fmt.Println("Slice after appending data:", b) } Output: Slice : [2 5] Slice after appending data: [2 5 80] Example 2: C // Golang program to illustrate // reflect.ValueOf() Function package main import ( "fmt" "reflect" ) // Main function func main() { src := reflect.ValueOf([]int{10, 20, 32}) dest := reflect.ValueOf([]int{1, 2, 3}) // use of ValueOf() method fmt.Println(src, dest) } Output: [10 20 32] [1 2 3] Comment More infoAdvertise with us Next Article reflect.ValueOf() Function in Golang with Examples S SHUBHAMSINGH10 Follow Improve Article Tags : Go Language Golang-reflect Similar Reads reflect.SliceOf() 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.SliceOf() Function in Golang is used to get the slice type with element type t, i.e., if t represents int, SliceO 1 min read 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.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.StructOf() 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.StructOf() Function in Golang is used to get the struct type containing fields. To access this function, one need 2 min read reflect.Select() 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.Select() Function in Golang is used to executes a select operation described by the list of cases. To access this 2 min read Like