Answers for "go type of variable"

Go
2

golang get type of variable

1. reflect.TypeOf(varName)
2. fmt.Printf("%Tn", varName)
Posted by: Guest on September-08-2021
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

Browse Popular Code Answers by Language