Go Package reflect: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 6: Line 6:


=Overview=
=Overview=
=<tt>reflect.TypeOf()</tt>=


=Getting the Type of Variable=
=Getting the Type of Variable=

Revision as of 01:41, 28 December 2023

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'
}