reflect.Int() 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.Int() Function in Golang is used to get the v's underlying value, as an int64. To access this function, one needs to imports the reflect package in the program. Syntax: func (v Value) Int() int64 Parameters: This function does not accept any parameter. Return Value: This function returns the v's underlying value, as an int64. Below examples illustrate the use of the above method in Golang: Example 1: C // Golang program to illustrate // reflect.Int() Function package main import ( "fmt" "reflect" ) func main() { // use of Int() method fmt.Println(reflect.ValueOf(678).Int()) } Output: 678 Example 2: C // Golang program to illustrate // reflect.Int() Function package main import ( "fmt" "reflect" ) const a = 2 const b = 3 func main() { fmt.Println("Number a : ", a) fmt.Println("Number b : ", b) c := a + b // use of Int() method fmt.Println(reflect.ValueOf(c).Int()) } Output: Number a : 2 Number b : 3 5 Comment More infoAdvertise with us Next Article reflect.Int() Function in Golang with Examples S SHUBHAMSINGH10 Follow Improve Article Tags : Go Language Golang-reflect Similar Reads reflect.Kind() 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.Kind() Function in Golang is used to find the name of kind. To access this function, one needs to imports the ref 2 min read reflect.Index() 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.Index() Function in Golang is used to get the v's i'th element. To access this function, one needs to imports the 2 min read reflect.IsNil() 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.IsNil() Function in Golang is used to check whether its argument v is nil. The argument must be a chan, func, int 2 min read reflect.Pointer() 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.Pointer() Function in Golang is used to get the v's value as a uintptr. To access this function, one needs to imp 2 min read reflect.NewAt() 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.NewAt() Function in Golang is used to get the Value representing a pointer to a value of the specified type, usin 2 min read Like