View on GitHub

Go Lang Notes

Compilations of Go Lang sample code along with AWS examples. Topped with notes on related topics.

Data Conversion in Go Lang

Visitors

Go’s basic types are

The example below shows variables of several types, and also that variable declarations may be “factored” into blocks, as with import statements.

var (
    ToBe   bool       = false
    MaxInt uint64     = 1<<64 - 1
    z      complex128 = cmplx.Sqrt(-5 + 12i)
)

The int, uint, and uintptr types are usually 32 bits wide on 32-bit systems and 64 bits wide on 64-bit systems. When you need an integer value you should use int unless you have a specific reason to use a sized or unsigned integer type.

Reference: A Tour of Go

Conversion int float bool string
var i int i float64(i)
float32(in)
  strconv.Itoa(i)
strconv.FormatInt(i, 10)
var f float int(f) f   strconv.FormatFloat(f, ‘E’, -1, 64)
var b bool     b strconv.FormatBool(b)
var s string strconv.Atoi(s)
strconv.ParseInt(s, 10, 64)
strconv.ParseFloat(s, 32) strconv.ParseBool(s) s

Reference: strconv - Go Doc

Visitors