Golang : Convert(cast) int to float example
Problem :
You have a variable of type int and you want to convert/type cast it to float64 type. Also, you want to use reflect
to confirm the variable type after conversion.
Solution :
Type cast the integer variable with float32(single precision floating point) or float64 and use reflect.TypeOf()
function to confirm.
For example :
package main
import (
"fmt"
"reflect"
)
func main() {
var intValue int = 1088
var floatValue float64 = float64(intValue)
fmt.Println(intValue)
fmt.Printf("The type of intValue is %v \n", reflect.TypeOf(intValue))
fmt.Println(floatValue)
fmt.Printf("The type of floatValue is %v \n", reflect.TypeOf(floatValue))
}
Output :
1088
The type of intValue is int
1088
The type of floatValue is float64
References :
https://www.socketloop.com/tutorials/golang-convert-cast-float-to-int
From https://golang.org/ref/spec#Types :
uint8 the set of all unsigned 8-bit integers (0 to 255)
uint16 the set of all unsigned 16-bit integers (0 to 65535)
uint32 the set of all unsigned 32-bit integers (0 to 4294967295)
uint64 the set of all unsigned 64-bit integers (0 to 18446744073709551615)
int8 the set of all signed 8-bit integers (-128 to 127)
int16 the set of all signed 16-bit integers (-32768 to 32767)
int32 the set of all signed 32-bit integers (-2147483648 to 2147483647)
int64 the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807)
float32 the set of all IEEE-754 32-bit floating-point numbers
float64 the set of all IEEE-754 64-bit floating-point numbers
complex64 the set of all complex numbers with float32 real and imaginary parts
complex128 the set of all complex numbers with float64 real and imaginary parts
byte alias for uint8
rune alias for int32
See also : Golang : Convert(cast) float to int
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+10.9k Golang : Proper way to test CIDR membership of an IP 4 or 6 address example
+14k Golang : Get uploaded file name or access uploaded files
+12.2k Golang : "https://" not allowed in import path
+16.1k Golang : Test floating point numbers not-a-number and infinite example
+6.5k Golang : Output or print out JSON stream/encoded data
+19.2k Golang : How to Set or Add Header http.ResponseWriter?
+7k Golang : Check if one string(rune) is permutation of another string(rune)
+5.5k Golang : Error handling methods
+4.8k Linux/Unix/MacOSX : Find out which application is listening to port 80 or use which IP version
+9k Golang : Generate random Chinese, Japanese, Korean and other runes
+17.7k Golang : Get all upper case or lower case characters from string example
+6.7k Golang : Fibonacci number generator examples