Answers for "int in golang"

Go
2

variable types golang

// Go's basic types are :

bool

string

int  int8  int16  int32  int64
uint uint8 uint16 uint32 uint64 uintptr

byte // alias for uint8

rune // alias for int32
     // represents a Unicode code point

float32 float64

complex64 complex128
Posted by: Guest on September-13-2020
0

golang interface to int

var myInt interface{}
myInt = 8

toInt, ok := myInt.(int)
fmt.Println(toInt, ok)  // 8 true

toString, ok := myInt.(string)
fmt.Println(toString, ok)  // "" false
Posted by: Guest on May-17-2021
0

int to int64 golang

var i int = 32
j := int64(i)
Posted by: Guest on April-08-2021

Browse Popular Code Answers by Language