利用golang的反射包,实现根据函数名自动调用函数。

前端之家收集整理的这篇文章主要介绍了利用golang的反射包,实现根据函数名自动调用函数。前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
package main

import "fmt"
import "reflect"
import "encoding/xml"

type st struct{
}

func (this *st)Echo(){
    fmt.Println("echo()")
}

func (this *st)Echo2(){
    fmt.Println("echo--------------------()")
}

var xmlstr string=`<root>
<func>Echo</func>
<func>Echo2</func>
</root>`

type st2 struct{
    E []string `xml:"func"`
}

func main() {
    s2 := st2{}
    xml.Unmarshal([]byte(xmlstr),&s2)

    s := &st{}
    v := reflect.ValueOf(s)
  
    v.MethodByName(s2.E[1]).Call(nil)
 }
 
利用golang的反射包,实现根据函数自动调用函数
原文链接:https://www.f2er.com/go/191150.html

猜你在找的Go相关文章