Go Package reflect

From NovaOrdis Knowledge Base
Revision as of 01:41, 28 December 2023 by Ovidiu (talk | contribs) (→‎Overview)
Jump to navigation Jump to search

External

Internal

Overview

reflect.TypeOf()

Getting the Type of Variable

package main

import (
  "fmt"
  "reflect"
)

func main() {
  i := 10
  f := 10.1
  s := "blue"
  fmt.Println(reflect.TypeOf(i)) // returns a Type and will print 'int'
  fmt.Println(reflect.TypeOf(f)) // returns a Type and will print 'float64'
  fmt.Println(reflect.TypeOf(s)) // returns a Type and will print 'string'
}