golang----reflect

reflect遍历结构体的属性和方法

具体实现


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", 19}
    Info(u)
}

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

    //判断是否是结构体类型
    if k := t.Kind(); k != reflect.Struct {
        fmt.Println("Not supported type")
        return
    }

    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 i := 0; i < t.NumMethod(); i++ {
        m := t.Method(i)
        fmt.Printf("%6s: %v\n", m.Name, m.Type)
    }
}
上一篇:iOS IAP教程


下一篇:Go的反射