16 Star 63 Fork 47

ShirDon-廖显东 / Go语言高级开发与实战-随书代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
reflect6.go 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
ShirDon-廖显东 提交于 2021-12-28 09:45 . commit
//++++++++++++++++++++++++++++++++++++++++
// 《Go语言高级开发与实战》源码
//++++++++++++++++++++++++++++++++++++++++
// Author:廖显东(ShirDon)
// Blog:https://www.shirdon.com/
// 知乎:https://www.zhihu.com/people/shirdonl
// 公众号:源码大数据
// 仓库地址:https://gitee.com/shirdonl/goAdvanced
// 仓库地址:https://github.com/shirdonl/goAdvanced
//++++++++++++++++++++++++++++++++++++++++
package main
import (
"fmt"
"reflect"
)
type Gopher struct {
Id int
Name string
Level int
}
//有参数调用
func (u Gopher) CallFuncHasArgs(name string, age int) {
fmt.Println("CallFuncHasArgs name: ", name, ", age:", age, "and original Gopher.Name:", u.Name)
}
//无参数调用
func (u Gopher) CallFuncNoArgs() {
fmt.Println("CallFuncNoArgs")
}
func main() {
pro := Gopher{1, "Shirdon.Liao", 12}
getValue := reflect.ValueOf(pro)
//先看看带有参数的调用方法
methodValue := getValue.MethodByName("CallFuncHasArgs")
args := []reflect.Value{reflect.ValueOf("Barry"), reflect.ValueOf(20)}
methodValue.Call(args)
//再看看无参数的调用方法
methodValue = getValue.MethodByName("CallFuncNoArgs")
args = make([]reflect.Value, 0)
methodValue.Call(args)
}
//CallFuncHasArgs name: Barry , age: 20 and original Gopher.Name: Shirdon.Liao
//CallFuncNoArgs
Go
1
https://gitee.com/shirdonl/goAdvanced.git
git@gitee.com:shirdonl/goAdvanced.git
shirdonl
goAdvanced
Go语言高级开发与实战-随书代码
0f051d9f4e35

搜索帮助

53164aa7 5694891 3bd8fe86 5694891