Go编程笔记(19)

package main

import (
	"fmt"
	"reflect"
)

type User struct {
	Id   int
	Name string
	Age  int
}

func (u User) Hello() {
	fmt.Println("hello world ")
}
func main() {

	u := User{1, "OK", 12}
	Info(u)
}

func Info(o interface{}) {
	t := reflect.TypeOf(o)
	fmt.Println("Type:", t.Name())

	v := reflect.ValueOf(o)
	fmt.Println("Fields:")
	for i := 0; i < t.NumField(); i++ {

		f := t.Field(i)
		val := v.Field(i).Interface()
		fmt.Printf("%6s: %v = %v \n", f.Name, f.Type, val)
	}

	for j := 0; j < t.NumMethod(); j++ {
		m := t.Method(j)
		fmt.Printf("%6s: %v\n", m.Name, m.Type)
	}
}

输出结果:

Type: User
	Fields:
	    Id: int = 1 
	  Name: string = OK 
	   Age: int = 12 
	 Hello: func(main.User)


你可能感兴趣的:(Go编程笔记(19))